nix/modules/homebrew.nix
Harivansh Rathi 30ac6bc674 optimize the shit out of theme loading
switch neovim to vim.pack away from lazy
add sandboxagent package to netty
update defaults
2026-03-30 23:44:32 -04:00

31 lines
459 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"
"karabiner-elements"
"rectangle"
"raycast"
"riptide-beta"
"thebrowsercompany-dia"
"wispr-flow"
];
};
}