summary refs log tree commit diff stats
path: root/system/settings/hardware
diff options
context:
space:
mode:
authorAlan Pearce2024-03-09 12:19:36 +0100
committerAlan Pearce2024-03-09 12:19:36 +0100
commit321760dde27b969a950d1d28c38cc55e8c304f78 (patch)
tree8780d237e72b6d7afad2eefc084d3428c981344a /system/settings/hardware
parent1a985ff6da3a13572144f35a094bd91bfe168cd5 (diff)
downloadnixfiles-321760dde27b969a950d1d28c38cc55e8c304f78.tar.lz
nixfiles-321760dde27b969a950d1d28c38cc55e8c304f78.tar.zst
nixfiles-321760dde27b969a950d1d28c38cc55e8c304f78.zip
Update to current variable names
Diffstat (limited to 'system/settings/hardware')
-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 20030760..c6241f8f 100644
--- a/system/settings/hardware/keyboard.nix
+++ b/system/settings/hardware/keyboard.nix
@@ -2,9 +2,9 @@
 , pkgs
 , ...
 }: {
-  services.xserver = {
+  services.xserver.xkb = {
     layout = "us,de";
-    xkbVariant = "intl-unicode,nodeadkeys";
-    xkbOptions = "altwin:prtsc_rwin,caps:escape_shifted_capslock";
+    variant = "intl-unicode,nodeadkeys";
+    options = "altwin:prtsc_rwin,caps:escape_shifted_capslock";
   };
 }