summaryrefslogtreecommitdiffstats
path: root/tv/configs/synaptics.nix
blob: c47cb9deb0abfe40794a1ee4508a612285cf74ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:

{
  # TODO this is host specific
  services.xserver.synaptics = {
    enable = true;
    twoFingerScroll = true;
    accelFactor = "0.035";
    additionalOptions = ''
      Option "FingerHigh" "60"
      Option "FingerLow"  "60"
    '';
  };
}