Skip to content

Personal Voice

Everything under System Settings › Accessibility › Personal Voice, as Nix options. Each one is named after the control you'd click, and set under programs.nix-plist-manager.options in home-manager.

1 option 1 verified against System Settings

Allow applications to use your Personal Voice

Section titled “Allow applications to use your Personal Voice”

System Settings › Accessibility › Personal Voice › Allow applications to use your Personal Voice

home-manager · per user ✓ Verified on macOS 27
applications.systemSettings.accessibility.personalVoice.allowApplicationsToUseYourPersonalVoice = true;

true or false "unset" puts back macOS's default.

Where it's stored and what runs
  • com.apple.Accessibility kTTSVBAllowVoiceBankingAppUsage

For false:

/usr/bin/defaults write com.apple.Accessibility kTTSVBAllowVoiceBankingAppUsage -bool false || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.Accessibility kTTSVBAllowVoiceBankingAppUsage -bool false' >&2
/usr/bin/defaults -currentHost delete com.apple.Accessibility kTTSVBAllowVoiceBankingAppUsage 2>/dev/null || true

For true:

/usr/bin/defaults write com.apple.Accessibility kTTSVBAllowVoiceBankingAppUsage -bool true || echo 'nix-plist-manager: failed: /usr/bin/defaults write com.apple.Accessibility kTTSVBAllowVoiceBankingAppUsage -bool true' >&2
/usr/bin/defaults -currentHost delete com.apple.Accessibility kTTSVBAllowVoiceBankingAppUsage 2>/dev/null || true

For unset:

/usr/bin/defaults delete com.apple.Accessibility kTTSVBAllowVoiceBankingAppUsage 2>/dev/null || true
/usr/bin/defaults -currentHost delete com.apple.Accessibility kTTSVBAllowVoiceBankingAppUsage 2>/dev/null || true