diff options
| author | Austin Horstman <khaneliman12@gmail.com> | 2023-12-29 14:08:34 -0600 |
|---|---|---|
| committer | Austin Horstman <khaneliman12@gmail.com> | 2023-12-29 14:09:38 -0600 |
| commit | f6cf46f7bc02650fb027b4e997dfc1365f4c8ff9 (patch) | |
| tree | fe7595de1f7e7698095d95eaa48dee3c2dc08f48 /modules/system | |
| parent | 8a8321271f0835fae2cb195e1137cb381fdbcc8e (diff) | |
GlobalPreferences: fix mouse scaling example
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/defaults/GlobalPreferences.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/defaults/GlobalPreferences.nix b/modules/system/defaults/GlobalPreferences.nix index 32841be..a975802 100644 --- a/modules/system/defaults/GlobalPreferences.nix +++ b/modules/system/defaults/GlobalPreferences.nix @@ -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. ''; }; }; |
