all repos — nixfiles @ 66d2f0330023b14abd15f7da407f6cff9e7fd890

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
{ config, pkgs, ... }:

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