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