From c47bef985a05419c2b11a75d637375c84ea7fbb8 Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Mon, 1 Apr 2024 12:29:25 +0200 Subject: [PATCH] feat: add de_DE locale --- modules/i18n.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/i18n.nix b/modules/i18n.nix index 5e93699..819373d 100644 --- a/modules/i18n.nix +++ b/modules/i18n.nix @@ -3,7 +3,10 @@ time.timeZone = "Europe/Berlin"; # Select internationalisation properties. - i18n.defaultLocale = "en_US.UTF-8"; + i18n = { + defaultLocale = "en_US.UTF-8"; + supportedLocales = [ "en_US.UTF-8/UTF-8" "de_DE.UTF-8/UTF-8" ]; + }; console = { font = "Lat2-Terminus16"; keyMap = "us";