dotfiles/system/homebrew.nix

42 lines
637 B
Nix

{ ... }:
{
homebrew = {
enable = true;
brews = [
"asdf"
"awscli"
"azure-cli"
"cloc"
"hashicorp/tap/terraform"
"helm"
"k9s"
"libpq"
"sops"
"sst/tap/opencode"
"yq"
];
taps = [ "hashicorp/tap" "sst/tap" ];
casks = [
"cursor"
"dotnet-sdk"
"firefox"
"flutter"
"google-chrome"
"obsidian"
"qbittorrent"
"raycast"
"slack"
"structuredlogviewer"
"visual-studio-code"
"vlc"
];
onActivation = {
cleanup = "zap";
};
global = {
autoUpdate = false;
};
};
}