aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/input/trackpoint.nix
blob: e4019d6361d9de98b08443324ed6eb3a50329a53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* TRACKPOINT INPUT CONFIGURATION
 *
 * This is a compatibility module for Thinkpad computers
 */

{ config, .... }: {
  services.xserver.libinput = {
    accelProfile = "flat";
    accelSpeed = "-0.2";
    scrollButton = 2;
  };

  hardware.trackpoint = {
    enable = true;
    emulateWheel = true;
  };
}