From e6f78ce0853135d1ce4feb16cf8ba76f2edae6ec Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sun, 3 Dec 2023 16:54:43 +0100 Subject: [PATCH] Upate locale configuration avoid perl warning --- nixos/includes/system/locales.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/includes/system/locales.nix b/nixos/includes/system/locales.nix index 3378d3c..8d94d16 100644 --- a/nixos/includes/system/locales.nix +++ b/nixos/includes/system/locales.nix @@ -5,6 +5,8 @@ i18n = { # defaultLocale = "en_US.UTF-8"; extraLocaleSettings = { + LANGUAGE = "en_US.UTF-8"; + LC_ALL = "en_US.UTF-8"; LANG = "en_US.UTF-8"; LC_TIME = "en_DK.UTF-8"; LC_DATE = "en_DK.UTF-8";