1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/keyboard.nix
Kierán Meinhardt a763c63de4 modularize
2019-04-19 03:11:51 +02:00

12 lines
309 B
Nix

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