summaryrefslogtreecommitdiff
path: root/services/x11-laptop.nix
blob: a14bf8db02dd6f7f00039f0b72a246c6ec0152bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, ... }:
{
  # Enable touchpad support.
  services.xserver.libinput = {
    enable = true;
    accelProfile = "adaptive";
    accelSpeed = "0.5";
    disableWhileTyping = true;
    scrollMethod = "twofinger";
    horizontalScrolling = false;
  };
}