mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 08:03:44 +00:00
25 lines
344 B
Nix
25 lines
344 B
Nix
{...}: {
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation = {
|
|
autoUpdate = false;
|
|
upgrade = false;
|
|
cleanup = "uninstall";
|
|
};
|
|
|
|
taps = [
|
|
"humanlayer/humanlayer"
|
|
];
|
|
|
|
brews = [];
|
|
|
|
casks = [
|
|
"cap"
|
|
"raycast"
|
|
"riptide-dev"
|
|
"thebrowsercompany-dia"
|
|
"wispr-flow"
|
|
];
|
|
};
|
|
}
|