mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
13 lines
293 B
Nix
13 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;
|
|
};
|
|
}
|