From 48724124d5e65bc5310050d6778d5e8398e3c161 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 1 Feb 2026 20:02:03 +0000 Subject: [PATCH] Set German timezone and keyboard layout - Change timezone from Europe/Rome to Europe/Berlin - Add German keyboard (nodeadkeys) for console and XKB - Keep en_US.UTF-8 locale for English system language https://claude.ai/code/session_01UAdmEkSeh9NGPfjRfViLWY --- modules/common.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/common.nix b/modules/common.nix index 564e07e..2f8914f 100644 --- a/modules/common.nix +++ b/modules/common.nix @@ -11,9 +11,16 @@ # SYSTEM # -------------------------------------------------------------------------- networking.hostName = "atlas"; - time.timeZone = "Europe/Rome"; # TODO: Change to your timezone + time.timeZone = "Europe/Berlin"; i18n.defaultLocale = "en_US.UTF-8"; + # German keyboard layout (nodeadkeys variant) + console.keyMap = "de-latin1-nodeadkeys"; + services.xserver.xkb = { + layout = "de"; + variant = "nodeadkeys"; + }; + networking.networkmanager.enable = true; # --------------------------------------------------------------------------