summary refs log tree commit diff stats
path: root/system/modules/hardware/qwerty.nix
blob: d220cb271475c8f2faf3cd343714cb657338c64d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, ... }:

{ services.kmscon = {
    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";
  };
}