summary refs log tree commit diff stats
path: root/system/settings/hardware/mouse.nix
blob: d4a232af0b7ff5e274edc8c510f33f94dfa3a29c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config
, pkgs
, ...
}: {
  services.libinput = {
    enable = true;
    mouse = {
      accelProfile = "flat";
      accelSpeed = "0";
    };
  };
}