From 1785fe6c01def91e5adfb3eb4460f96a9fe33f94 Mon Sep 17 00:00:00 2001 From: Joerie de Gram Date: Sat, 8 Jul 2023 16:43:22 +0200 Subject: [PATCH] nixos/i18n: correct defaultText for supportedLocales --- nixos/modules/config/i18n.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix index b1efc00773dc..b19d38091e75 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)) ))