config/modules/macos/homebrew.nix

23 lines
305 B
Nix
Raw 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 = {
2025-05-21 10:44:59 -07:00
autoUpdate = false;
2025-04-19 21:57:56 -07:00
cleanup = "none";
2025-05-21 10:44:59 -07:00
upgrade = false;
2025-04-19 21:57:56 -07:00
};
brews = [
];
casks = [
];
masApps = {
"wireguard" = 1451685025;
};
};
}