From 1382943989fc459b9f3abc597dd43e330d8c28e0 Mon Sep 17 00:00:00 2001 From: caandt Date: Thu, 1 Jan 2026 01:39:38 -0600 Subject: [PATCH] keyboard repeat rate --- system/display.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/system/display.nix b/system/display.nix index 7a60a58..e9b1c26 100644 --- a/system/display.nix +++ b/system/display.nix @@ -15,6 +15,13 @@ lib.mkIf config.u.has.graphical { }; autoRepeatDelay = 200; autoRepeatInterval = 30; + inputClassSections = [ + '' + Identifier "system-keyboard" + MatchIsKeyboard "on" + Option "AutoRepeat" "200 30" + '' + ]; }; services.desktopManager.plasma6.enable = true; programs.partition-manager.enable = true;