1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-31 04:04:45 +00:00
This commit is contained in:
Mohammad Al-Ahdal 2025-03-25 03:41:01 +05:00 committed by GitHub
commit a4af18cd6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,17 @@ in {
example = -1.0;
description = ''
Sets the mouse tracking speed. Found in the "Mouse" section of
"System Preferences". Set to -1.0 to disable mouse acceleration.
"System Preferences". Set to -1.0 to disable mouse acceleration on versions of macOS before 14.0.
'';
};
system.defaults.".GlobalPreferences"."com.apple.mouse.linear" =
mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
Sets whether the pointer precision is turned on or off. Found in the "Mouse" section of
"System Preferences" under the "Advanced" tab. Set to true to enable pointer precision.
'';
};
};