diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-24 13:08:59 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-06-24 13:08:59 -0400 |
| commit | 75004dba3efc9302c61f399c4ffc7a6d4d5c19c1 (patch) | |
| tree | 4494f35d2176f789e585217b97ed782cef7403c0 /nixos | |
| parent | 3aefc84731c607cfdd2e20324d11db46f6f1fd10 (diff) | |
| download | home-75004dba3efc9302c61f399c4ffc7a6d4d5c19c1.tar.gz | |
nixos: set locale settings
Diffstat (limited to 'nixos')
| -rw-r--r-- | nixos/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/nixos/default.nix b/nixos/default.nix index 1559da6..345cdea 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -140,6 +140,20 @@ in }]; }; }; + + i18n.defaultLocale = "en_US.UTF-8"; + + i18n.extraLocaleSettings = { + LC_ADDRESS = "en_US.UTF-8"; + LC_IDENTIFICATION = "en_US.UTF-8"; + LC_MEASUREMENT = "en_US.UTF-8"; + LC_MONETARY = "en_US.UTF-8"; + LC_NAME = "en_US.UTF-8"; + LC_NUMERIC = "en_US.UTF-8"; + LC_PAPER = "en_US.UTF-8"; + LC_TELEPHONE = "en_US.UTF-8"; + LC_TIME = "en_US.UTF-8"; + }; services.xserver.xkb.layout = "us"; services.xserver.xkb.variant = "colemak_dh,"; |