Will finally work?

This commit is contained in:
Nox Sluijtman 2024-05-20 11:13:43 +02:00
parent f90c3a3ef4
commit 9b1fb64eb9

View file

@ -6,6 +6,8 @@ in {
enable = mkEnableOption "Enables opinionated xorg config"; enable = mkEnableOption "Enables opinionated xorg config";
enableKeyRepeatSettings = mkEnableOption "Enables insanely fast keyrepeat";
bqn.enable = mkEnableOption "Enables bqn layout"; bqn.enable = mkEnableOption "Enables bqn layout";
touchpad = { touchpad = {
@ -55,8 +57,8 @@ in {
xkbOptions = mkIf cfg.bqn.enable "grp:switch"; xkbOptions = mkIf cfg.bqn.enable "grp:switch";
enable = true; enable = true;
autoRepeatDelay = 200; autoRepeatDelay = mkIf cfg.enableKeyRepeatSettings 200;
autoRepeatInterval = 60; autoRepeatInterval = mkIf cfg.enableKeyRepeatSettings 60;
windowManager = { windowManager = {
windowmaker.enable = true; windowmaker.enable = true;
xmonad.enable = true; xmonad.enable = true;