config/modules/macos/homebrew.nix

35 lines
513 B
Nix
Raw Permalink Normal View History

2025-04-21 13:04:42 -07:00
_: {
2025-04-19 21:57:56 -07:00
# 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"
2025-04-30 12:38:05 -07:00
"supertuxkart"
2025-05-07 08:20:01 -07:00
"sf-symbols"
2025-05-03 10:37:41 -07:00
"mediosz/tap/swipeaerospace"
2025-04-19 21:57:56 -07:00
];
masApps = {
"wireguard" = 1451685025;
};
};
}