29 lines
347 B
Nix
29 lines
347 B
Nix
{ ... }:
|
|
|
|
{
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation = {
|
|
autoUpdate = true;
|
|
cleanup = "zap";
|
|
};
|
|
|
|
brews = [
|
|
"gamdl"
|
|
"knock"
|
|
"snort"
|
|
];
|
|
|
|
casks = [
|
|
"android-platform-tools"
|
|
"flutter"
|
|
"ghostty"
|
|
"librewolf"
|
|
"ngrok"
|
|
"pearcleaner"
|
|
"zulu@17"
|
|
];
|
|
};
|
|
}
|