summaryrefslogtreecommitdiff
path: root/services/x11-laptop.nix
blob: 2cea47b4c4ee3788c9bfbd3efbe8969b3f621dff (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 = true;
    };
  };
}