mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 13:03:45 +00:00
35 lines
561 B
Nix
35 lines
561 B
Nix
{...}: {
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation = {
|
|
autoUpdate = false;
|
|
upgrade = false;
|
|
cleanup = "uninstall";
|
|
};
|
|
|
|
taps = [
|
|
"humanlayer/humanlayer"
|
|
"gromgit/fuse"
|
|
"mutagen-io/mutagen"
|
|
];
|
|
|
|
brews = [
|
|
"bitwarden-cli"
|
|
"gromgit/fuse/sshfs-mac"
|
|
"mutagen-io/mutagen/mutagen"
|
|
];
|
|
|
|
casks = [
|
|
"cap"
|
|
"codex"
|
|
"karabiner-elements"
|
|
"macfuse"
|
|
"rectangle"
|
|
"raycast"
|
|
"riptide-beta"
|
|
"thebrowsercompany-dia"
|
|
"wispr-flow"
|
|
];
|
|
};
|
|
}
|