mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
13 lines
368 B
Nix
13 lines
368 B
Nix
{ lib, ... }:
|
|
let inherit (import <niveum/lib> { inherit lib; }) commaSep;
|
|
in {
|
|
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";
|
|
}
|