config/modules/macos/homebrew.nix

41 lines
531 B
Nix
Raw Normal View History

2025-04-19 21:57:56 -07:00
{
inputs,
config,
lib,
pkgs,
...
}: {
# Use homebrew to install casks and Mac App Store apps
homebrew = {
enable = true;
onActivation = {
autoUpdate = true;
cleanup = "none";
upgrade = true;
};
# taps = [
# "legcord/legcord"
# ];
brews = [
"imagemagick"
"opam"
];
casks = [
"battle-net"
"stremio"
"alt-tab"
"legcord"
"zulip"
"zen-browser"
];
masApps = {
"wireguard" = 1451685025;
};
};
}