1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 10:41:06 +01:00
Files
niveum/configs/keyboard.nix

12 lines
309 B
Nix
Raw Normal View History

2019-04-19 03:11:51 +02:00
with import <lib>;
{
services.xserver = {
layout = commaSep [ "de" "gr" "ru" ];
xkbVariant = commaSep [ "T3" "polytonic" "phonetic_winkeys" ];
xkbOptions = commaSep [ "compose:caps" "terminate:ctrl_alt_bksp" "grp:ctrls_toggle" ];
libinput.enable = true;
};
i18n.consoleKeyMap = "de";
}