all repos — nixfiles @ 9ad3e8ffd82fd8d681be90dea70e5c0c643afa65

System and user configuration, managed by nix and home-manager

system/modules/hardware/qwerty.nix (view raw)

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,caps:escape";
  };
}