diff options
| author | Daiderd Jordan <daiderd@gmail.com> | 2019-03-22 20:52:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-22 20:52:34 +0100 |
| commit | 2430e7210042ca8ba175c52ed3de871a008f4ffc (patch) | |
| tree | abaf6f812537a0e2e2539356bdae18554124f87e /modules/system | |
| parent | af7cd05699fea0d782e9f23a98d73bd2e696061b (diff) | |
| parent | f17fb87faba0a0f6b291ac5ecc19372a1d8720b5 (diff) | |
Merge pull request #132 from ben-z/add-defaults-configs
Add defaults configs
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/defaults/NSGlobalDomain.nix | 32 | ||||
| -rw-r--r-- | modules/system/defaults/trackpad.nix | 26 |
2 files changed, 58 insertions, 0 deletions
diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 984adf6..28fe60a 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -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 { type = types.nullOr types.bool; 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. + ''; + }; + }; } diff --git a/modules/system/defaults/trackpad.nix b/modules/system/defaults/trackpad.nix index 1fb1c90..a86a347 100644 --- a/modules/system/defaults/trackpad.nix +++ b/modules/system/defaults/trackpad.nix @@ -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. + ''; + }; + }; } |
