about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorJoerie de Gram <j.de.gram@gmail.com>2023-07-08 16:43:22 +0200
committerJoerie de Gram <j.de.gram@gmail.com>2023-07-08 16:43:22 +0200
commit1785fe6c01def91e5adfb3eb4460f96a9fe33f94 (patch)
tree94d14b95e3b857b834481d2e55bbbf8b8299dd42 /nixos
parentc9bde7e93fd8d44f18ca4e9433931ead64a3db11 (diff)
nixos/i18n: correct defaultText for supportedLocales
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/config/i18n.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix
index b1efc00773dc5..b19d38091e75b 100644
--- a/nixos/modules/config/i18n.nix
+++ b/nixos/modules/config/i18n.nix
@@ -66,6 +66,7 @@ with lib;
             (builtins.map (l: (replaceStrings [ "utf8" "utf-8" "UTF8" ] [ "UTF-8" "UTF-8" "UTF-8" ] l) + "/UTF-8") (
               [
                 "C.UTF-8"
+                "en_US.UTF-8"
                 config.i18n.defaultLocale
               ] ++ (attrValues (filterAttrs (n: v: n != "LANGUAGE") config.i18n.extraLocaleSettings))
             ))