blob: 53a4901ef67eb824abbf44978da92479b46da3b0 (
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";
kmscon = {
extraConfig = ''
xkb-model=pc104
xkb-layout=us
xkb-variant=colemak
xkb-options="altwin:prtsc_rwin"
'';
};
xserver = {
layout = "us,us";
xkbVariant = "colemak,";
xkbOptions = "grp:shifts_toggle,altwin:prtsc_rwin";
};
}
|