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