From 5f56b5a3a763215367eea3a9c61c9aac51fdace1 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 20 Dec 2020 17:10:22 +0100 Subject: [PATCH] Set monetary locale to use Euro --- modules/locales.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/locales.nix b/modules/locales.nix index 91f7c3d..10d621f 100644 --- a/modules/locales.nix +++ b/modules/locales.nix @@ -1,7 +1,12 @@ { ... }: { - i18n.defaultLocale = "en_GB.UTF-8"; + i18n = { + defaultLocale = "en_GB.UTF-8"; + extraLocaleSettings = { + LC_MONETARY = "de_DE.UTF-8"; + }; + }; console.keyMap = "de"; time.timeZone = "Europe/Berlin";