summary refs log tree commit diff stats
path: root/modules/hardware
diff options
context:
space:
mode:
authorAlan Pearce2018-03-08 18:39:19 +0100
committerAlan Pearce2018-03-08 18:40:02 +0100
commit3b51c35515bfa8a74cbe6437465d8a9263b106a5 (patch)
tree44fd0e70bfd5f01b310428b7e8f9126175c4ab43 /modules/hardware
parent22ddb031c9cade16fd5c77ba240ae1f2e0d2d443 (diff)
downloadnixfiles-3b51c35515bfa8a74cbe6437465d8a9263b106a5.tar.lz
nixfiles-3b51c35515bfa8a74cbe6437465d8a9263b106a5.tar.zst
nixfiles-3b51c35515bfa8a74cbe6437465d8a9263b106a5.zip
Use US intl layout for QWERTY
Diffstat (limited to 'modules/hardware')
-rw-r--r--modules/hardware/qwerty.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/hardware/qwerty.nix b/modules/hardware/qwerty.nix
index 3783b3a9..d220cb27 100644
--- a/modules/hardware/qwerty.nix
+++ b/modules/hardware/qwerty.nix
@@ -4,11 +4,13 @@
     extraConfig = ''
       xkb-model=pc104
       xkb-layout=us
+      xkb-variant=intl-unicode
       xkb-options="altwin:prtsc_rwin"
     '';
   };
   services.xserver = {
     layout = "us";
+    xkbVariant = "intl-unicode";
     xkbOptions = "altwin:prtsc_rwin";
   };
 }