summaryrefslogtreecommitdiff
path: root/modules/desktop/software/services/libinput.nix
blob: 643f814f1e17f22ee8c3de5766c4e526443251c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  services.libinput = {
    enable = true;

    mouse = {
      accelProfile = "flat";
    };

    touchpad = {
      accelProfile = "flat";
    };
  };
}