diff options
| author | Simon Holywell <simon@holywell.com.au> | 2019-11-04 12:49:09 +1000 |
|---|---|---|
| committer | Simon Holywell <simon@holywell.com.au> | 2019-11-04 12:49:09 +1000 |
| commit | 47a7731943b07de4a4fdd59d2236939d8128bd2e (patch) | |
| tree | 316c388d22cd0ec8889fdba1110091e87c5e91bb /modules/system | |
| parent | 8e90853f172ea05b51f7d40c307e1b58c9e44dab (diff) | |
adds com.apple.sound.beep.feedback
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/defaults/NSGlobalDomain.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 8164faf..bc38921 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -237,6 +237,16 @@ in { ''; }; + system.defaults.NSGlobalDomain."com.apple.sound.beep.feedback" = mkOption { + type = types.nullOr types.int; + default = null; + description = '' + # Apple menu > System Preferences > Sound + Make a feedback sound when the system volume changed. This setting accepts + the integers 0 or 1. Defaults to 1. + ''; + }; + system.defaults.NSGlobalDomain."com.apple.trackpad.enableSecondaryClick" = mkOption { type = types.nullOr types.bool; default = null; |
