mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Merge pull request #838 from moni-dz/deprecate-string-float
Use native floats for mouse scaling
This commit is contained in:
commit
8a8321271f
1 changed files with 3 additions and 10 deletions
|
@ -3,15 +3,7 @@
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
isFloat = x: isString x && builtins.match "^[+-]?([0-9]*[.])?[0-9]+$" x != null;
|
inherit (config.lib.defaults.types) floatWithDeprecationError;
|
||||||
|
|
||||||
float = mkOptionType {
|
|
||||||
name = "float";
|
|
||||||
description = "float";
|
|
||||||
check = isFloat;
|
|
||||||
merge = options.mergeOneOption;
|
|
||||||
};
|
|
||||||
|
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
|
|
||||||
|
@ -28,8 +20,9 @@ in {
|
||||||
|
|
||||||
system.defaults.".GlobalPreferences"."com.apple.mouse.scaling" =
|
system.defaults.".GlobalPreferences"."com.apple.mouse.scaling" =
|
||||||
mkOption {
|
mkOption {
|
||||||
type = types.nullOr float;
|
type = types.nullOr floatWithDeprecationError;
|
||||||
default = null;
|
default = null;
|
||||||
|
example = -1;
|
||||||
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 to disable mouse acceleration.
|
||||||
|
|
Loading…
Add table
Reference in a new issue