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

{ services.kmscon = {
    extraConfig = ''
      xkb-model=pc104
      xkb-layout=us
      xkb-options="altwin:prtsc_rwin"
    '';
  };
  services.xserver = {
    layout = "us";
    xkbOptions = "altwin:prtsc_rwin";
  };
}