mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 23:01:36 +00:00
30 lines
455 B
Nix
30 lines
455 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"
|
|
"rectangle"
|
|
"raycast"
|
|
"riptide-dev"
|
|
"thebrowsercompany-dia"
|
|
"wispr-flow"
|
|
];
|
|
};
|
|
}
|