sayncthing ig
This commit is contained in:
parent
cef112b672
commit
22a2d35ae8
12 changed files with 283 additions and 15 deletions
|
|
@ -10,7 +10,8 @@
|
|||
./boot.nix
|
||||
./shell.nix
|
||||
./networking.nix
|
||||
./dm.nix
|
||||
./gdm.nix
|
||||
./localization.nix
|
||||
./fira-code.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
13
system/fira-code.nix
Normal file
13
system/fira-code.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
environment.systemPackages = [ pkgs.nerd-fonts.fira-code ];
|
||||
console = {
|
||||
font = "FiraCode Nerd Font";
|
||||
};
|
||||
}
|
||||
|
|
@ -6,12 +6,22 @@
|
|||
}:
|
||||
|
||||
{
|
||||
time = {
|
||||
timeZone = "Europe/Berlin";
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Berlin";
|
||||
i18n = {
|
||||
defaultLocale = "en_GB.UTF-8";
|
||||
extraLocaleSettings = {
|
||||
LC_ADDRESS = "de_DE.UTF-8";
|
||||
LC_IDENTIFICATION = "de_DE.UTF-8";
|
||||
LC_MEASUREMENT = "de_DE.UTF-8";
|
||||
LC_MONETARY = "de_DE.UTF-8";
|
||||
LC_NAME = "de_DE.UTF-8";
|
||||
LC_NUMERIC = "de_DE.UTF-8";
|
||||
LC_PAPER = "de_DE.UTF-8";
|
||||
LC_TELEPHONE = "de_DE.UTF-8";
|
||||
LC_TIME = "de_DE.UTF-8";
|
||||
};
|
||||
};
|
||||
console.keyMap = "de";
|
||||
|
||||
console.keyMap = "de";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue