From f361d2b877e2da0067c7d2d64463b72eda83d984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Thu, 28 Oct 2021 15:06:33 +0200 Subject: [PATCH] feat: add russian keyboard --- configs/keyboard.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/keyboard.nix b/configs/keyboard.nix index bd05ce6..27ad952 100644 --- a/configs/keyboard.nix +++ b/configs/keyboard.nix @@ -2,8 +2,8 @@ let commaSep = builtins.concatStringsSep ","; in { services.xserver = { - layout = commaSep [ "de" "gr" ]; - xkbVariant = commaSep [ "T3" "polytonic" ]; + layout = commaSep [ "de" "gr" "ru" ]; + xkbVariant = commaSep [ "T3" "polytonic" "phonetic" ]; xkbOptions = commaSep [ "compose:caps" "terminate:ctrl_alt_bksp" "grp:ctrls_toggle" ]; libinput.enable = true;