nix-flakes/hosts/machine/kanade/modules/homebrew/default.nix
2026-08-26 10:59:51 +09:00

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;
};
}