nix-config/darwin/_mixins/console/homebrew.nix
2024-05-23 15:02:20 -04:00

14 lines
293 B
Nix

_: {
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;
};
}