diff options
| author | Leander Scherer <leander@schererleander.de> | 2026-01-08 17:59:25 +0100 |
|---|---|---|
| committer | Leander Scherer <leander@schererleander.de> | 2026-01-08 19:08:13 +0100 |
| commit | 8a4e66f3c36fb55e59596ef4be865a96e500df9f (patch) | |
| tree | c4175979b1b73d93287b30bd2d683fd16c786360 /hosts/adam | |
| parent | 4f96cf5b2b26f2d5024ec76be3ffb8b9ef351e8c (diff) | |
feat(dns): setup dns over tls module
Diffstat (limited to 'hosts/adam')
| -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; |
