marleyos/modules/darwin/base/homebrew/default.nix
punkfairie cc51153ece
feat(darwin): Big messy darwin bootstrap
I thought about splitting this into smaller commits but fuck it
2024-11-21 20:28:46 -08:00

18 lines
204 B
Nix

{
lib,
config,
...
}:
{
config = {
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
cleanup = "zap";
upgrade = true;
};
};
};
}