config/modules/macos/homebrew.nix
2025-05-07 08:20:01 -07:00

34 lines
513 B
Nix

_: {
# Use homebrew to install casks and Mac App Store apps
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
cleanup = "none";
upgrade = true;
};
brews = [
"imagemagick"
"opam"
];
casks = [
"battle-net"
"stremio"
"alt-tab"
"legcord"
"zulip"
"zen-browser"
"supertuxkart"
"sf-symbols"
"mediosz/tap/swipeaerospace"
];
masApps = {
"wireguard" = 1451685025;
};
};
}