diff options
| author | run <91027295+tnxz@users.noreply.github.com> | 2023-08-17 10:00:39 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-17 10:00:39 +0530 |
| commit | ffccbdf7d80a8d610b4b7c2bd11f1fbc7f370275 (patch) | |
| tree | 8ac824a80934a177c4c69feb44116a82132e0f08 | |
| parent | 3fcd83783a1e2ddad0f14821da4186a95bc76c50 (diff) | |
add progress to homebrew package installations
| -rw-r--r-- | modules/homebrew.nix | 2 |
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" |
