1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ config, pkgs, lib, ... }:
{
system.defaults = {
NSGlobalDomain = {
# Natural scroll
"com.apple.swipescrolldirection" = true;
# Point & Click: Tracking speed
"com.apple.trackpad.scaling" = 1.0;
};
trackpad = {
# Point & Click: Silent clicking (0 = on; 1 = off)
ActuationStrength = 1;
# Point & Click: Secondary click
TrackpadRightClick = true;
# Point & Click: Tap to click
Clicking = false;
# Point & Click: Click
FirstClickThreshold = 2;
SecondClickThreshold = 2;
};
};
}