nix/modules/homebrew.nix
2026-04-04 19:19:05 -04:00

32 lines
482 B
Nix

{ ... }:
{
homebrew = {
enable = true;
onActivation = {
autoUpdate = false;
upgrade = false;
cleanup = "uninstall";
};
taps = [
"humanlayer/humanlayer"
"mutagen-io/mutagen"
];
brews = [
"mutagen-io/mutagen/mutagen"
];
casks = [
"cap"
"helium-browser"
"karabiner-elements"
"rectangle"
"raycast"
"riptide-beta"
"thebrowsercompany-dia"
"wispr-flow"
];
};
}