summaryrefslogtreecommitdiff
path: root/modules/homebrew.nix
diff options
context:
space:
mode:
authorrun <91027295+tnxz@users.noreply.github.com>2023-08-17 10:00:39 +0530
committerGitHub <noreply@github.com>2023-08-17 10:00:39 +0530
commitffccbdf7d80a8d610b4b7c2bd11f1fbc7f370275 (patch)
tree8ac824a80934a177c4c69feb44116a82132e0f08 /modules/homebrew.nix
parent3fcd83783a1e2ddad0f14821da4186a95bc76c50 (diff)
add progress to homebrew package installations
Diffstat (limited to 'modules/homebrew.nix')
-rw-r--r--modules/homebrew.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/homebrew.nix b/modules/homebrew.nix
index 05d86b9..8665565 100644
--- a/modules/homebrew.nix
+++ b/modules/homebrew.nix
@@ -120,7 +120,7 @@ let
config = {
brewBundleCmd = concatStringsSep " " (
optional (!config.autoUpdate) "HOMEBREW_NO_AUTO_UPDATE=1"
- ++ [ "brew bundle --file='${brewfileFile}' --no-lock" ]
+ ++ [ "brew bundle --verbose --file='${brewfileFile}' --no-lock" ]
++ optional (!config.upgrade) "--no-upgrade"
++ optional (config.cleanup == "uninstall") "--cleanup"
++ optional (config.cleanup == "zap") "--cleanup --zap"