diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index d519ce08..8164faf4 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -224,6 +224,19 @@ in { ''; }; + system.defaults.NSGlobalDomain."com.apple.sound.beep.volume" = mkOption { + type = types.nullOr float; + default = null; + description = '' + # Apple menu > System Preferences > Sound + Sets the beep/alert volume level from 0.000 (muted) to 1.000 (100% volume). + + 75% = 0.7788008 + 50% = 0.6065307 + 25% = 0.4723665 + ''; + }; + system.defaults.NSGlobalDomain."com.apple.trackpad.enableSecondaryClick" = mkOption { type = types.nullOr types.bool; default = null;