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