Skip to content

Commit

Permalink
Change noAutoUpdate option to autoUpdate in brew-bundle module
Browse files Browse the repository at this point in the history
  • Loading branch information
malob committed Dec 15, 2020
1 parent df06dc4 commit a2146fe
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions modules/programs/brew-bundle.nix
Expand Up @@ -29,9 +29,8 @@ let
);

brew-bundle-command =
"HOMEBREW_NO_AUTO_UPDATE=" +
(if cfg.noAutoUpdate then "1" else "0") +
" brew bundle --file='${brewfile}' --no-lock" +
(if cfg.autoUpdate then "" else "HOMEBREW_NO_AUTO_UPDATE=1 ") +
"brew bundle --file='${brewfile}' --no-lock" +
(if cfg.cleanup == "uninstall" || cfg.cleanup == "zap" then " --cleanup" else "") +
(if cfg.cleanup == "zap" then " --zap" else "");

Expand All @@ -47,14 +46,13 @@ in
installation instructions: https://brew.sh
'';

noAutoUpdate = mkOption {
autoUpdate = mkOption {
type = types.bool;
default = true;
example = false;
default = false;
description = ''
Sets the <literal>HOMEBREW_NO_AUTO_UPDATE</literal> environment variable when running the
<command>brew bundle</command> command. The default is <literal>true</literal> so that
repeated invocations of <command>darwin-rebuild switch</command> are idempotent.
When enabled, Homebrew is allowed to auto-update during <command>nix-darwin</command>
activation. The default is <literal>false</literal> so that repeated invocations of
<command>darwin-rebuild switch</command> are idempotent.
'';
};

Expand Down

0 comments on commit a2146fe

Please sign in to comment.