From 76e22dba3c4a3fffa4560f6f1c2559057e14b286 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 25 Jan 2022 11:09:39 +0100 Subject: [PATCH] feat: bye bye russian keyboard --- configs/keyboard.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/keyboard.nix b/configs/keyboard.nix index 27ad952..bd05ce6 100644 --- a/configs/keyboard.nix +++ b/configs/keyboard.nix @@ -2,8 +2,8 @@ let commaSep = builtins.concatStringsSep ","; in { services.xserver = { - layout = commaSep [ "de" "gr" "ru" ]; - xkbVariant = commaSep [ "T3" "polytonic" "phonetic" ]; + layout = commaSep [ "de" "gr" ]; + xkbVariant = commaSep [ "T3" "polytonic" ]; xkbOptions = commaSep [ "compose:caps" "terminate:ctrl_alt_bksp" "grp:ctrls_toggle" ]; libinput.enable = true;