blob: 3b1c0582fecbf0c0bb8c73e81eb5abb9ca2beffb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ config, pkgs, ... }:
{ i18n.consoleKeyMap = "colemak/en-latin9";
services.kmscon = {
extraConfig = ''
xkb-model=pc104
xkb-layout=us
xkb-variant=colemak
xkb-options="altwin:prtsc_rwin"
'';
};
services.xserver = {
layout = "us,us";
xkbVariant = "colemak,";
xkbOptions = "grp:shifts_toggle,altwin:prtsc_rwin";
};
}
|