From cd0f9076139f716f7158fdefdc0af6f25cce75e9 Mon Sep 17 00:00:00 2001 From: marty Date: Thu, 18 Dec 2025 16:50:52 +0100 Subject: [PATCH] sprich deutsch, hurensohn --- .gitignore | 1 - modules/window_manager/hyprland.nix | 5 +++++ system/default.nix | 1 + system/localization.nix | 17 +++++++++++++++++ 4 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 system/localization.nix diff --git a/.gitignore b/.gitignore index 4c7f2b9..e69de29 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +0,0 @@ -hardware-configuration.nix \ No newline at end of file diff --git a/modules/window_manager/hyprland.nix b/modules/window_manager/hyprland.nix index 16c9cad..5ccc564 100644 --- a/modules/window_manager/hyprland.nix +++ b/modules/window_manager/hyprland.nix @@ -29,10 +29,15 @@ exec-once = [ ]; "$mod" = "SUPER"; + "$shiftmod" = "SUPER_SHIFT"; bind = [ "$mod, D, exec, walker" + "$shiftmod, Q, killactive," "$mod, return, exec, kitty" ]; + input = { + kb_layout = "de"; + }; }; }; home.sessionVariables.NIXOS_OZONE_WL = "1"; diff --git a/system/default.nix b/system/default.nix index 7ee9903..8c8d03c 100644 --- a/system/default.nix +++ b/system/default.nix @@ -11,5 +11,6 @@ ./shell.nix ./networking.nix ./dm.nix + ./localization.nix ]; } diff --git a/system/localization.nix b/system/localization.nix new file mode 100644 index 0000000..e47887a --- /dev/null +++ b/system/localization.nix @@ -0,0 +1,17 @@ +{ + config, + pkgs, + lib, + ... +}: + +{ + time = { + timeZone = "Europe/Berlin"; + }; + i18n = { + defaultLocale = "en_GB.UTF-8"; + }; + console.keyMap = "de"; + +}