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

23 lines
309 B
Nix

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