summary refs log tree commit diff stats
path: root/system/settings/hardware/keyboard.nix
diff options
context:
space:
mode:
authorAlan Pearce2020-03-16 10:05:41 +0100
committerAlan Pearce2020-03-16 10:05:41 +0100
commitab8c99f7875592b29f4b6c3edccf8fda512299f4 (patch)
tree8cc0d82aa3923cf2a449aa23b275f352534ef4ee /system/settings/hardware/keyboard.nix
parentd6a9b583285003383f5a8d72127e0d90ef77ae40 (diff)
downloadnixfiles-ab8c99f7875592b29f4b6c3edccf8fda512299f4.tar.lz
nixfiles-ab8c99f7875592b29f4b6c3edccf8fda512299f4.tar.zst
nixfiles-ab8c99f7875592b29f4b6c3edccf8fda512299f4.zip
keyboard: use qwerty,norman
Diffstat (limited to 'system/settings/hardware/keyboard.nix')
-rw-r--r--system/settings/hardware/keyboard.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/system/settings/hardware/keyboard.nix b/system/settings/hardware/keyboard.nix
new file mode 100644
index 00000000..5a0ea5f4
--- /dev/null
+++ b/system/settings/hardware/keyboard.nix
@@ -0,0 +1,9 @@
+{ config, pkgs, ... }:
+
+{
+  services.xserver = {
+    layout = "us,us";
+    xkbVariant = "intl-unicode,norman";
+    xkbOptions = "altwin:prtsc_rwin,caps:escape,grp:shifts_toggle";
+  };
+}