1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-05 16:27:03 +00:00

Fix brew-bundle.extraConfig example

This commit is contained in:
Malo Bourgon 2020-12-08 11:42:15 -08:00
parent 31b0d5cb59
commit ef8d9630ca

View file

@ -172,10 +172,10 @@ in
# 'brew install', always 'brew services restart', 'brew link', 'brew unlink mysql' (if it is installed) # 'brew install', always 'brew services restart', 'brew link', 'brew unlink mysql' (if it is installed)
brew "mysql@5.6", restart_service: true, link: true, conflicts_with: ["mysql"] brew "mysql@5.6", restart_service: true, link: true, conflicts_with: ["mysql"]
# 'brew install --with-rmtp', 'brew services restart' on version changes # 'brew cask install --appdir=~/my-apps/Applications'
brew "denji/nginx/nginx-full", args: ["with-rmtp"], restart_service: :changed cask "firefox", args: { appdir: "~/my-apps/Applications" }
# 'brew install', always 'brew services restart', 'brew link', 'brew unlink mysql' (if it is installed) # 'brew cask install' only if '/usr/libexec/java_home --failfast' fails
brew "mysql@5.6", restart_service: true, link: true, conflicts_with: ["mysql"] cask "java" unless system "/usr/libexec/java_home --failfast"
''; '';
description = "Extra lines to be added verbatim to the generated Brewfile."; description = "Extra lines to be added verbatim to the generated Brewfile.";
}; };