From 8f9828e40de69b6a3a3e10e86af6f1eadbb724a5 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sat, 30 Sep 2023 11:59:18 +0200 Subject: [PATCH] Rework locales --- nixos/includes/system/locales.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/nixos/includes/system/locales.nix b/nixos/includes/system/locales.nix index 2d8ac2c..3378d3c 100644 --- a/nixos/includes/system/locales.nix +++ b/nixos/includes/system/locales.nix @@ -2,5 +2,13 @@ { time.timeZone = "Europe/Paris"; # English locale with YYY/MM/DD date format - i18n.defaultLocale = "en_DK.UTF-8"; + i18n = { + # defaultLocale = "en_US.UTF-8"; + extraLocaleSettings = { + LANG = "en_US.UTF-8"; + LC_TIME = "en_DK.UTF-8"; + LC_DATE = "en_DK.UTF-8"; + LC_PAPER = "fr_FR.UTF-8"; + }; + }; }