blob: 3048e02ef90037abbb5e08b066260f12402bcab4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ vim gitMinimal ];
programs.bash.promptInit = ''
PS1="\n\[\033[1;32m\][\[\e]0;\u@$(hostname -f): \w\a\]\u@$(hostname -f):\w]\$\[\033[0m\] '
'';
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "fr";
};
time.timeZone = "Europe/Paris";
}
|