19 lines
204 B
Nix
19 lines
204 B
Nix
|
{
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
config = {
|
||
|
homebrew = {
|
||
|
enable = true;
|
||
|
|
||
|
onActivation = {
|
||
|
autoUpdate = true;
|
||
|
cleanup = "zap";
|
||
|
upgrade = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|