From 20227371973bb40fa02f58a40a30d877307358b8 Mon Sep 17 00:00:00 2001 From: caandt Date: Thu, 12 Mar 2026 20:44:33 -0500 Subject: [PATCH] mouse --- system/display.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/system/display.nix b/system/display.nix index e9b1c26..2c5c3b8 100644 --- a/system/display.nix +++ b/system/display.nix @@ -33,6 +33,12 @@ lib.mkIf config.u.has.graphical { in [application-menu]; services.libinput = { enable = true; - mouse.accelProfile = "flat"; + mouse = { + accelProfile = "flat"; + middleEmulation = false; + additionalOptions = '' + Option "HighResolutionWheelScrolling" "0" + ''; + }; }; }