From fa649b1e2ab64c766fbe225675d36d67f01c59e0 Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Sat, 3 Feb 2024 14:11:26 -0700 Subject: [PATCH] Add missing locale settings to perl stops complaining --- common/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/common/default.nix b/common/default.nix index 8a169df..018c3e8 100644 --- a/common/default.nix +++ b/common/default.nix @@ -26,7 +26,13 @@ networking.firewall.allowPing = true; time.timeZone = "America/Denver"; - i18n.defaultLocale = "en_US.UTF-8"; + i18n = { + defaultLocale = "en_US.UTF-8"; + extraLocaleSettings = { + LANGUAGE = "en_US.UTF-8"; + LC_ALL = "en_US.UTF-8"; + }; + }; services.openssh = { enable = true;