diff options
author | Alan Pearce | 2018-03-08 18:39:19 +0100 |
---|---|---|
committer | Alan Pearce | 2018-03-08 18:40:02 +0100 |
commit | 3b51c35515bfa8a74cbe6437465d8a9263b106a5 (patch) | |
tree | 44fd0e70bfd5f01b310428b7e8f9126175c4ab43 /modules/hardware | |
parent | 22ddb031c9cade16fd5c77ba240ae1f2e0d2d443 (diff) | |
download | nixos-configuration-3b51c35515bfa8a74cbe6437465d8a9263b106a5.tar.lz nixos-configuration-3b51c35515bfa8a74cbe6437465d8a9263b106a5.tar.zst nixos-configuration-3b51c35515bfa8a74cbe6437465d8a9263b106a5.zip |
Use US intl layout for QWERTY
Diffstat (limited to 'modules/hardware')
-rw-r--r-- | modules/hardware/qwerty.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/hardware/qwerty.nix b/modules/hardware/qwerty.nix index 3783b3a..d220cb2 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"; }; } |