From ffccbdf7d80a8d610b4b7c2bd11f1fbc7f370275 Mon Sep 17 00:00:00 2001 From: run <91027295+tnxz@users.noreply.github.com> Date: Thu, 17 Aug 2023 10:00:39 +0530 Subject: [PATCH] add progress to homebrew package installations --- modules/homebrew.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/homebrew.nix b/modules/homebrew.nix index 05d86b98..8665565f 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"