From 7206899cbf446efd7bd29bfe31e8f32f5d636706 Mon Sep 17 00:00:00 2001 From: Sandro Date: Tue, 26 Jul 2022 14:50:02 +0200 Subject: nixos/i18n: add en_US.UTF-8 to default locales Closes #182798 --- nixos/modules/config/i18n.nix | 1 + 1 file changed, 1 insertion(+) (limited to 'nixos') diff --git a/nixos/modules/config/i18n.nix b/nixos/modules/config/i18n.nix index cdf5c661e5e9e..b78e678488530 100644 --- a/nixos/modules/config/i18n.nix +++ b/nixos/modules/config/i18n.nix @@ -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)) )); -- cgit 1.4.1