marleyos/modules/darwin/base/homebrew/default.nix

19 lines
204 B
Nix
Raw Normal View History

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