From 892c758303a540102310ff79cf30eae0e2f5e65d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Mon, 25 Apr 2022 11:34:07 +0200 Subject: [PATCH] feat(keyboard): add arabic and russian --- configs/keyboard.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configs/keyboard.nix b/configs/keyboard.nix index 64174e1..a63fa23 100644 --- a/configs/keyboard.nix +++ b/configs/keyboard.nix @@ -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;