nix/modules/homebrew.nix
2026-03-25 21:16:45 -04:00

31 lines
476 B
Nix

{...}: {
homebrew = {
enable = true;
onActivation = {
autoUpdate = false;
upgrade = false;
cleanup = "uninstall";
};
taps = [
# riptide-dev is still sourced from this tap.
"humanlayer/humanlayer"
];
brews = [
"bitwarden-cli"
];
casks = [
"cap"
"codex"
"hammerspoon"
"rectangle"
"raycast"
"riptide-beta"
"thebrowsercompany-dia"
"wispr-flow"
];
};
}