summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMalo Bourgon <mbourgon@gmail.com>2020-12-08 11:42:15 -0800
committerMalo Bourgon <mbourgon@gmail.com>2020-12-08 11:42:15 -0800
commitef8d9630cac09e32bbf9a83e2d423a0e176abef4 (patch)
tree02d724c36ae6175fb21378f85d9a60cd753898e1 /modules
parent31b0d5cb59a25fd383b9d7cb838925d30e7a4289 (diff)
Fix brew-bundle.extraConfig example
Diffstat (limited to 'modules')
-rw-r--r--modules/programs/brew-bundle.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/programs/brew-bundle.nix b/modules/programs/brew-bundle.nix
index 35a09e3..209cd3d 100644
--- a/modules/programs/brew-bundle.nix
+++ b/modules/programs/brew-bundle.nix
@@ -172,10 +172,10 @@ in
# '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 install --with-rmtp', 'brew services restart' on version changes
- brew "denji/nginx/nginx-full", args: ["with-rmtp"], restart_service: :changed
- # '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 cask install --appdir=~/my-apps/Applications'
+ cask "firefox", args: { appdir: "~/my-apps/Applications" }
+ # 'brew cask install' only if '/usr/libexec/java_home --failfast' fails
+ cask "java" unless system "/usr/libexec/java_home --failfast"
'';
description = "Extra lines to be added verbatim to the generated Brewfile.";
};