aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/hardware/trackpoint/default.nix
blob: 58de0a72be68153fa4784b5afb4647ee988115d8 (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;
  };
}