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"; + }; + }; }