nix-config/darwin/_mixins/console/homebrew.nix

14 lines
293 B
Nix
Raw Normal View History

_: {
homebrew = {
enable = true;
taps = [ ];
# the following sets up Homebrew to NEVER update implicitly
# to update brew itself, use `brew upgrade`
# to update brew packages, use `brew update`
global.autoUpdate = false;
onActivation.autoUpdate = false;
};
}