1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-12-14 11:57:34 +00:00

Merge pull request #839 from khaneliman/mouse-scaling

GlobalPreferences: fix mouse scaling example
This commit is contained in:
Michael Hoang 2023-12-30 08:03:57 +10:00 committed by GitHub
commit 0a3afdc600
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,10 +22,10 @@ in {
mkOption {
type = types.nullOr floatWithDeprecationError;
default = null;
example = -1;
example = -1.0;
description = lib.mdDoc ''
Sets the mouse tracking speed. Found in the "Mouse" section of
"System Preferences". Set to -1 to disable mouse acceleration.
"System Preferences". Set to -1.0 to disable mouse acceleration.
'';
};
};