mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 18:01:29 +00:00
32 lines
482 B
Nix
32 lines
482 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"
|
|
"helium-browser"
|
|
"karabiner-elements"
|
|
"rectangle"
|
|
"raycast"
|
|
"riptide-beta"
|
|
"thebrowsercompany-dia"
|
|
"wispr-flow"
|
|
];
|
|
};
|
|
}
|