From c02b4eb85814b5a90884aa5cb41598e2006eda0d Mon Sep 17 00:00:00 2001 From: Lilly Date: Mon, 5 Jan 2026 20:26:44 +0000 Subject: [PATCH] Auto-commit: 2026-01-05 20:26:44 --- system/core.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/system/core.nix b/system/core.nix index 10f2fa7..00c1cfe 100644 --- a/system/core.nix +++ b/system/core.nix @@ -62,4 +62,28 @@ in }; plymouth.enable = true; }; + + # Set your time zone. + time.timeZone = "Europe/Berlin"; + + # Select internationalisation properties. + i18n.defaultLocale = "en_US.UTF-8"; + + i18n.extraLocaleSettings = { + LC_ADDRESS = "en_US.UTF-8"; + LC_IDENTIFICATION = "en_US.UTF-8"; + LC_MEASUREMENT = "en_US.UTF-8"; + LC_MONETARY = "en_US.UTF-8"; + LC_NAME = "en_US.UTF-8"; + LC_NUMERIC = "en_US.UTF-8"; + LC_PAPER = "en_US.UTF-8"; + LC_TELEPHONE = "en_US.UTF-8"; + LC_TIME = "en_US.UTF-8"; + }; + + # Configure keymap in X11 + services.xserver.xkb = { + layout = "us"; + variant = "euro"; + }; } \ No newline at end of file