summary refs log tree commit diff stats
path: root/system/settings/hardware/qwerty.nix
blob: c967d561af6ba33863e41fc1a3da31b8d12a880f (plain)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{
  services.xserver = {
    layout = "us";
    xkbVariant = "intl-unicode";
    xkbOptions = "altwin:prtsc_rwin,caps:escape";
  };
}