Merge pull request #182971 from SuperSandro2000/i18n-en-us

nixos/i18n: add en_US.UTF-8 to default locales
This commit is contained in:
Jörg Thalheim 2022-07-26 18:38:20 +01:00 committed by GitHub
commit 41400115e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,6 +57,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))
));