24 lines
343 B
Nix
24 lines
343 B
Nix
{
|
|
...
|
|
}:
|
|
{
|
|
homebrew = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
|
|
onActivation = {
|
|
autoUpdate = true;
|
|
cleanup = "zap";
|
|
upgrade = true;
|
|
};
|
|
|
|
taps = [
|
|
{
|
|
name = "pioner92/tap";
|
|
trusted = true;
|
|
}
|
|
];
|
|
brews = import ./brews.nix;
|
|
casks = import ./casks.nix;
|
|
};
|
|
}
|