From bc607c2956d87d0f4fd6017b2f717511959ece06 Mon Sep 17 00:00:00 2001 From: Elias Kohout Date: Tue, 7 Apr 2026 18:12:25 +0200 Subject: [PATCH] Add German locale support to system configuration --- nixos/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/default.nix b/nixos/default.nix index 3aa2673..b94699d 100644 --- a/nixos/default.nix +++ b/nixos/default.nix @@ -40,6 +40,7 @@ # System-wide locale i18n.defaultLocale = "en_US.UTF-8"; + i18n.supportedLocales = [ "de_DE.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" ]; time.timeZone = "Europe/Berlin"; # Networking basics