all repos — nixfiles @ 3b51c35515bfa8a74cbe6437465d8a9263b106a5

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

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";
  };
}