config/modules/macos/homebrew.nix
2025-04-21 13:04:42 -07:00

30 lines
437 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"
];
masApps = {
"wireguard" = 1451685025;
};
};
}