summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2022-12-04 12:26:58 +0100
committerAdrian Kummerlaender2022-12-04 12:26:58 +0100
commitb2d0554798e88f74c7bf3452f15cbe1ffa99f261 (patch)
treed9bd3d1acefad7077f4ab0eeadbaec27d1559df9
parentec15f22dc795e0e1a53ace6b6c4067c5d3a0ed92 (diff)
downloadnixos_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.nix4
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";