summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMichael Hoang <Enzime@users.noreply.github.com>2023-12-30 08:03:57 +1000
committerGitHub <noreply@github.com>2023-12-30 08:03:57 +1000
commit0a3afdc60042d8e1c2deb63bdfa017acc424a397 (patch)
treefe7595de1f7e7698095d95eaa48dee3c2dc08f48 /modules
parent8a8321271f0835fae2cb195e1137cb381fdbcc8e (diff)
parentf6cf46f7bc02650fb027b4e997dfc1365f4c8ff9 (diff)
Merge pull request #839 from khaneliman/mouse-scaling
GlobalPreferences: fix mouse scaling example
Diffstat (limited to 'modules')
-rw-r--r--modules/system/defaults/GlobalPreferences.nix4
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.
'';
};
};