From af171e26f9e189c618f4eba2e6070ea50bc440aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Czy=C5=BC?= Date: Sat, 9 Nov 2024 10:42:07 +0100 Subject: [PATCH] feat: libinput disable mouse accel --- hosts/modules/configuration.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/hosts/modules/configuration.nix b/hosts/modules/configuration.nix index 6e26739..def1f3d 100644 --- a/hosts/modules/configuration.nix +++ b/hosts/modules/configuration.nix @@ -26,6 +26,14 @@ # lidSwitchExternalPower = if hostname == "server" then "ignore" else "suspend-then-hibernate"; lidSwitchExternalPower = "ignore"; }; + + libinput = { + enable = true; + mouse = { + accelProfile = "flat"; + accelSpeed = "0.0"; + }; + }; }; environment = {