summary refs log tree commit diff stats
path: root/system/settings/hardware/keyboard.nix
diff options
context:
space:
mode:
authorAlan Pearce2022-10-17 11:35:33 +0200
committerAlan Pearce2022-10-17 11:35:33 +0200
commit783273b3af92b080070abbc91d23587e704f2dc6 (patch)
treea3ad2b7f9c2b9fc9d96b77a9578d07bf4083077c /system/settings/hardware/keyboard.nix
parente9088e6214fc7133bd841533b15f7097e491528e (diff)
downloadnixfiles-783273b3af92b080070abbc91d23587e704f2dc6.tar.lz
nixfiles-783273b3af92b080070abbc91d23587e704f2dc6.tar.zst
nixfiles-783273b3af92b080070abbc91d23587e704f2dc6.zip
keyboard: add German layout
Diffstat (limited to 'system/settings/hardware/keyboard.nix')
-rw-r--r--system/settings/hardware/keyboard.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/settings/hardware/keyboard.nix b/system/settings/hardware/keyboard.nix
index 3ff11b83..6e06618f 100644
--- a/system/settings/hardware/keyboard.nix
+++ b/system/settings/hardware/keyboard.nix
@@ -4,8 +4,8 @@
   ...
 }: {
   services.xserver = {
-    layout = "us";
-    xkbVariant = "intl-unicode";
-    xkbOptions = "altwin:prtsc_rwin,caps:escape";
+    layout = "us,de";
+    xkbVariant = "intl-unicode,nodeadkeys";
+    xkbOptions = "altwin:prtsc_rwin,caps:escape_shifted_capslock";
   };
 }