nix/modules/homebrew.nix
Hari 0db4171b0b
Some checks are pending
quality / changes (push) Waiting to run
quality / Flake Check (push) Blocked by required conditions
quality / Nix Format Check (push) Blocked by required conditions
quality / Deploy netty (push) Blocked by required conditions
chore: faster builds, fzf lua (#74)
2026-04-18 14:37:34 -04:00

34 lines
638 B
Nix

{ ... }:
{
homebrew = {
enable = true;
onActivation = {
autoUpdate = false;
upgrade = false;
# `brew bundle --cleanup` is by far the slowest part of darwin activation
# on this machine. Keep switches fast and do cleanup manually when needed.
cleanup = "none";
};
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"
];
};
}