1
0
Fork 0
forked from irl/nix-configs

feat: initial commit

This commit is contained in:
Iain Learmonth 2025-06-06 06:46:08 +01:00
commit 4622aaafb1
6 changed files with 372 additions and 0 deletions

21
nixos/common.nix Normal file
View file

@ -0,0 +1,21 @@
{ ... }:
{
nix.settings.experimental-features = "nix-command flakes";
time.timeZone = "Europe/London";
i18n.defaultLocale = "en_GB.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_GB.UTF-8";
LC_IDENTIFICATION = "en_GB.UTF-8";
LC_MEASUREMENT = "en_GB.UTF-8";
LC_MONETARY = "en_GB.UTF-8";
LC_NAME = "en_GB.UTF-8";
LC_NUMERIC = "en_GB.UTF-8";
LC_PAPER = "en_GB.UTF-8";
LC_TELEPHONE = "en_GB.UTF-8";
LC_TIME = "en_GB.UTF-8";
};
}