From 5615b246b694cc54a68e9ce615e5dd632e974024 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 19 Jul 2024 11:45:24 +0200 Subject: [PATCH] feat: Modify keyboard layout in x86_64-linux hardware configuration The configuration update for the x86_64-linux t15 hardware adds a US layout variant to the existing German keyboard configuration. This change will allow switching between US and German keyboard layouts as per user requirements. --- systems/x86_64-linux/t15/hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/t15/hardware-configuration.nix b/systems/x86_64-linux/t15/hardware-configuration.nix index 784e841..3c0f827 100644 --- a/systems/x86_64-linux/t15/hardware-configuration.nix +++ b/systems/x86_64-linux/t15/hardware-configuration.nix @@ -94,7 +94,7 @@ console.keyMap = "de-latin1-nodeadkeys"; services.xserver.xkb = { - layout = "de"; + layout = "de,de+us"; variant = "nodeadkeys"; };