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:
commit
0a3afdc600
1 changed files with 2 additions and 2 deletions
|
@ -22,10 +22,10 @@ in {
|
||||||
mkOption {
|
mkOption {
|
||||||
type = types.nullOr floatWithDeprecationError;
|
type = types.nullOr floatWithDeprecationError;
|
||||||
default = null;
|
default = null;
|
||||||
example = -1;
|
example = -1.0;
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
Sets the mouse tracking speed. Found in the "Mouse" section of
|
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.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue