diff options
author | Adrian Kummerlaender | 2022-12-04 12:26:58 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2022-12-04 12:26:58 +0100 |
commit | b2d0554798e88f74c7bf3452f15cbe1ffa99f261 (patch) | |
tree | d9bd3d1acefad7077f4ab0eeadbaec27d1559df9 | |
parent | ec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92 (diff) | |
download | nixos_system-b2d0554798e88f74c7bf3452f15cbe1ffa99f261.tar nixos_system-b2d0554798e88f74c7bf3452f15cbe1ffa99f261.tar.gz nixos_system-b2d0554798e88f74c7bf3452f15cbe1ffa99f261.tar.bz2 nixos_system-b2d0554798e88f74c7bf3452f15cbe1ffa99f261.tar.lz nixos_system-b2d0554798e88f74c7bf3452f15cbe1ffa99f261.tar.xz nixos_system-b2d0554798e88f74c7bf3452f15cbe1ffa99f261.tar.zst nixos_system-b2d0554798e88f74c7bf3452f15cbe1ffa99f261.zip |
Explicitly list supported locales
-rw-r--r-- | configuration.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configuration.nix b/configuration.nix index 667d712..3f5b903 100644 --- a/configuration.nix +++ b/configuration.nix @@ -10,6 +10,10 @@ i18n = { defaultLocale = "en_US.UTF-8"; + supportedLocales = [ + "en_US.UTF-8/UTF-8" + "de_DE.UTF-8/UTF-8" + ]; }; time.timeZone = "Europe/Berlin"; |