- Option is removed in macOS Monterrey 12.0.1
https://support.apple.com/en-ca/guide/mac-help/mchlp2664/12.0/mac/12.0
A fix is disabling bluetooth with blueutil on sleep and enable it back again on wake using sleepwatcher.
brew install sleepwatcher && brew install blueutil
echo "/usr/local/bin/blueutil -p 0" > ~/.sleep && echo "/usr/local/bin/blueutil -p 1" > ~/.wakeup
chmod 755 ~/.sleep && chmod 755 ~/.wakeup
brew services restart sleepwatcher
rm ~/.sleep && rm ~/.wakeup
brew uninstall sleepwatcher && brew uninstall blueutil
brew services cleanup