nix/modules/homebrew.nix
2026-03-13 11:39:29 -04:00

22 lines
284 B
Nix

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