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

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