mirror of
https://github.com/harivansh-afk/nix.git
synced 2026-04-15 17:01:01 +00:00
22 lines
284 B
Nix
22 lines
284 B
Nix
{...}: {
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation = {
|
|
autoUpdate = false;
|
|
upgrade = false;
|
|
cleanup = "none";
|
|
};
|
|
|
|
taps = [];
|
|
|
|
brews = [];
|
|
|
|
casks = [
|
|
"cap"
|
|
"raycast"
|
|
"thebrowsercompany-dia"
|
|
"wispr-flow"
|
|
];
|
|
};
|
|
}
|