1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-28 10:47:19 +00:00

adds com.apple.sound.beep.feedback

This commit is contained in:
Simon Holywell 2019-11-04 12:49:09 +10:00
parent 8e90853f17
commit 47a7731943
No known key found for this signature in database
GPG key ID: 3346447094AB9095

View file

@ -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;