summary refs log tree commit diff stats
path: root/system/settings/hardware/keyboard.nix
diff options
context:
space:
mode:
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";
+  };
+}