diff options
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/adam/configuration.nix | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/hosts/adam/configuration.nix b/hosts/adam/configuration.nix index 4c8ea21..6b79fe8 100644 --- a/hosts/adam/configuration.nix +++ b/hosts/adam/configuration.nix @@ -61,6 +61,26 @@ }; }; + networking.networkmanager.enable = true; + + # Localisation + time.timeZone = "Europe/Berlin"; + i18n.defaultLocale = "en_US.UTF-8"; + i18n.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"; + }; + + # Disable waiting for network to be online + systemd.services.NetworkManager-wait-online.enable = false; + programs.dconf.enable = true; nx = { @@ -86,8 +106,9 @@ langs = { python = true; go = true; - java = true; latex = true; + nix = true; + lua = true; }; }; git.enable = true; |
