From 7622f3925828165e4e15e29b821412a7a3f69dca Mon Sep 17 00:00:00 2001 From: clerie Date: Tue, 9 Apr 2024 08:27:23 +0200 Subject: [PATCH] configuration/common: Use en_US as default locale and use de_DE for formats only --- configuration/common/locale.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/configuration/common/locale.nix b/configuration/common/locale.nix index fbaed26..3731378 100644 --- a/configuration/common/locale.nix +++ b/configuration/common/locale.nix @@ -4,9 +4,20 @@ time.timeZone = "Europe/Berlin"; - i18n.defaultLocale = "de_DE.UTF-8"; + i18n.defaultLocale = "en_US.UTF-8"; i18n.extraLocaleSettings = { - LC_MESSAGES = "en_US.UTF-8"; + LC_ADDRESS = "de_DE.UTF-8"; + # LC_COLLATE # How to sort stuff + # LC_CTYPE # Character recognition of bytes + # LC_IDENTIFICATION # What to show as system locale + LC_MONETARY = "de_DE.UTF-8"; # Currency formats + # LC_MEASSAGES # General message lang + LC_MEASUREMENT = "de_DE.UTF-8"; # Units used for numbers + LC_NAME = "de_DE.UTF-8"; # Names of persons + # LC_NUMERIC # Punctiation of numbers + LC_PAPER = "de_DE.UTF-8"; # Paper size + LC_TELEPHONE = "de_DE.UTF-8"; # Phone number formats + LC_TIME = "de_DE.UTF-8"; # Time format }; console = { keyMap = "de-latin1";