mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Merge 56e31e5ccc
into ebb88c3428
This commit is contained in:
commit
a4af18cd6a
1 changed files with 11 additions and 1 deletions
|
@ -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.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue