nixos/i18n: correct defaultText for supportedLocales

This commit is contained in:
Joerie de Gram 2023-07-08 16:43:22 +02:00
parent c9bde7e93f
commit 1785fe6c01

View file

@ -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))
))