diff options
| author | Dominik Kaiser | 2025-02-17 17:12:14 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-17 17:12:14 +0100 |
| commit | 5a29538e79f6a8b0d57e23fc930ef6e8e1acaa7c (patch) | |
| tree | 4f9ee3bb2ce9e4a1b50fcbe6ba2e8398db1326ce /hosts/sol/configuration.nix | |
| parent | a45cdec50ad86fe908f37d0ec38cfb48ac743726 (diff) | |
| download | nixos-5a29538e79f6a8b0d57e23fc930ef6e8e1acaa7c.tar.gz nixos-5a29538e79f6a8b0d57e23fc930ef6e8e1acaa7c.zip | |
Modularize locale
Diffstat (limited to 'hosts/sol/configuration.nix')
| -rw-r--r-- | hosts/sol/configuration.nix | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/hosts/sol/configuration.nix b/hosts/sol/configuration.nix index 27c3257..2106d05 100644 --- a/hosts/sol/configuration.nix +++ b/hosts/sol/configuration.nix @@ -8,6 +8,7 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix + ../common/global ]; nix.settings.experimental-features = [ "nix-command" "flakes" ]; @@ -26,24 +27,6 @@ # Enable networking networking.networkmanager.enable = true; - # Set your time zone. - time.timeZone = "Europe/Berlin"; - - # Select internationalisation properties. - 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"; - }; - # Enable the X11 windowing system. services.xserver.enable = true; |
