nix/modules/homebrew.nix
2026-03-13 13:42:28 -04:00

25 lines
344 B
Nix

{...}: {
homebrew = {
enable = true;
onActivation = {
autoUpdate = false;
upgrade = false;
cleanup = "uninstall";
};
taps = [
"humanlayer/humanlayer"
];
brews = [];
casks = [
"cap"
"raycast"
"riptide-dev"
"thebrowsercompany-dia"
"wispr-flow"
];
};
}