summary refs log tree commit diff stats
path: root/system/settings/hardware/mouse.nix
blob: 83e76d714814d851c528ea2edffb7c55a9a4288a (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:

{ 
  services.xserver.libinput = {
    enable = true;
    mouse = {
      accelProfile = "flat";
      accelSpeed = "0";
    };
  };
}