1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00

feat(keyboard): add arabic and russian

This commit is contained in:
2022-04-25 11:34:07 +02:00
parent 8cc3541d2d
commit 892c758303

View File

@@ -5,9 +5,10 @@
}: let
commaSep = builtins.concatStringsSep ",";
in {
# man 7 xkeyboard-config
services.xserver = {
layout = commaSep ["de" "gr"];
xkbVariant = commaSep ["T3" "polytonic"];
layout = commaSep ["de" "gr" "ru" "ara"];
xkbVariant = commaSep ["T3" "polytonic" "phonetic" "buckwalter"];
xkbOptions =
commaSep ["compose:caps" "terminate:ctrl_alt_bksp" "grp:ctrls_toggle"];
libinput.enable = true;