mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Merge pull request #132 from ben-z/add-defaults-configs
Add defaults configs
This commit is contained in:
commit
2430e72100
2 changed files with 58 additions and 0 deletions
|
@ -232,6 +232,14 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system.defaults.NSGlobalDomain."com.apple.trackpad.scaling" = mkOption {
|
||||||
|
type = types.nullOr float;
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
Configures the trackpad tracking speed (0 to 3). The default is "1".
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
system.defaults.NSGlobalDomain."com.apple.springing.enabled" = mkOption {
|
system.defaults.NSGlobalDomain."com.apple.springing.enabled" = mkOption {
|
||||||
type = types.nullOr types.bool;
|
type = types.nullOr types.bool;
|
||||||
default = null;
|
default = null;
|
||||||
|
@ -257,6 +265,30 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system.defaults.NSGlobalDomain.AppleMeasurementUnits = mkOption {
|
||||||
|
type = types.nullOr (types.enum [ "Centimeters" "Inches" ]);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
Whether to use centimeters (metric) or inches (US, UK) as the measurement unit. The default is based on region settings.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
system.defaults.NSGlobalDomain.AppleMetricUnits = mkOption {
|
||||||
|
type = types.nullOr (types.enum [ 0 1 ]);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
Whether to use the metric system. The default is based on region settings.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
system.defaults.NSGlobalDomain.AppleTemperatureUnit = mkOption {
|
||||||
|
type = types.nullOr (types.enum [ "Celsius" "Fahrenheit" ]);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
Whether to use Celsius or Fahrenheit. The default is based on region settings.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,5 +29,31 @@ with lib;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system.defaults.trackpad.ActuationStrength = mkOption {
|
||||||
|
type = types.nullOr (types.enum [ 0 1 ]);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
0 to enable Silent Clicking, 1 to disable. The default is 1.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
system.defaults.trackpad.FirstClickThreshold = mkOption {
|
||||||
|
type = types.nullOr (types.enum [ 0 1 2 ]);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
For normal click: 0 for light clicking, 1 for medium, 2 for firm.
|
||||||
|
The default is 1.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
system.defaults.trackpad.SecondClickThreshold = mkOption {
|
||||||
|
type = types.nullOr (types.enum [ 0 1 2 ]);
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
For force touch: 0 for light clicking, 1 for medium, 2 for firm.
|
||||||
|
The default is 1.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue