36 lines
455 B
Nix
36 lines
455 B
Nix
{ ... }:
|
|
|
|
{
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation = {
|
|
autoUpdate = true;
|
|
upgrade = true;
|
|
cleanup = "zap";
|
|
};
|
|
|
|
taps = [
|
|
"supersonic-app/supersonic"
|
|
];
|
|
|
|
brews = [
|
|
"gamdl"
|
|
"knock"
|
|
"snort"
|
|
];
|
|
|
|
casks = [
|
|
"android-platform-tools"
|
|
"flutter"
|
|
"ghostty"
|
|
"librewolf"
|
|
"ngrok"
|
|
"pearcleaner"
|
|
"zed"
|
|
"supersonic"
|
|
"calibre"
|
|
];
|
|
};
|
|
}
|