reNixos/s0melapt0p-nix/services/libinput.nix
2025-04-27 12:47:02 +03:00

23 lines
636 B
Nix

{...}: {
services = {
libinput = {
enable = true;
mouse = {
accelProfile = "flat";
accelSpeed = "-1.0";
buttonMapping = "1 2 3 4 5 6 7 8 9";
horizontalScrolling = true;
leftHanded = false;
naturalScrolling = true;
};
touchpad = {
accelProfile = "adaptive";
accelSpeed = "-1.0";
buttonMapping = "1 2 3 4 5 6 7 8 9";
clickMethod = "clickfinger";
leftHanded = false;
};
};
};
}