From 178b0ece78b8795b22ad27283f203c6d9c296559 Mon Sep 17 00:00:00 2001 From: madmin Date: Wed, 7 Aug 2024 20:08:51 +0200 Subject: [PATCH] clean(systems/core): isolate locale settings --- systems/common/core/region_locale.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 systems/common/core/region_locale.nix diff --git a/systems/common/core/region_locale.nix b/systems/common/core/region_locale.nix new file mode 100644 index 0000000..931e5b6 --- /dev/null +++ b/systems/common/core/region_locale.nix @@ -0,0 +1,17 @@ +{ + time.timeZone = "Europe/Paris"; + i18n.defaultLocale = "en_GB.UTF-8"; + + i18n.extraLocaleSettings = { + LC_MESSAGES = "de_DE.UTF-8"; + LC_ADDRESS = "de_DE.UTF-8"; + LC_IDENTIFICATION = "de_DE.UTF-8"; + LC_MEASUREMENT = "de_DE.UTF-8"; + LC_MONETARY = "de_DE.UTF-8"; + LC_NAME = "de_DE.UTF-8"; + LC_NUMERIC = "de_DE.UTF-8"; + LC_PAPER = "de_DE.UTF-8"; + LC_TELEPHONE = "de_DE.UTF-8"; + LC_TIME = "de_DE.UTF-8"; + }; +}