From d4356a9e42ec3f7f5e04dc4631acb5b2e748bac9 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 29 Sep 2023 21:36:20 +0200 Subject: [PATCH] fix: correctly split options in xkbOptions --- modules/desktop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/desktop/default.nix b/modules/desktop/default.nix index 0e1b7c0..94e79d5 100644 --- a/modules/desktop/default.nix +++ b/modules/desktop/default.nix @@ -7,7 +7,7 @@ layout = "us,cz"; # Keyboard layout & €-sign xkbVariant = ",qwerty"; - xkbOptions = "grp:alt_shift_toggle ctrl:nocaps"; + xkbOptions = "grp:alt_shift_toggle, ctrl:nocaps"; libinput.enable = true; modules = [ pkgs.xf86_input_wacom ]; # Both needed for wacom tablet usage wacom.enable = true; -- 2.48.1