all repos — archive/nixos-configuration @ e8ab8a052bd0af979b306a12125d6c09b1326d24

Superseded by nixfiles

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