From 9ebc657ccae10f200dba63b2767622b299666557 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Tue, 26 Dec 2023 14:42:16 +0100 Subject: [PATCH] Update locale --- nixos/includes/system/locales.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/nixos/includes/system/locales.nix b/nixos/includes/system/locales.nix index 8d94d16..f2ecdfc 100644 --- a/nixos/includes/system/locales.nix +++ b/nixos/includes/system/locales.nix @@ -3,14 +3,12 @@ time.timeZone = "Europe/Paris"; # English locale with YYY/MM/DD date format i18n = { - # defaultLocale = "en_US.UTF-8"; + 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"; LC_PAPER = "fr_FR.UTF-8"; + LC_ALL = "en_US.UTF-8"; }; }; }