22 lines
305 B
Nix
22 lines
305 B
Nix
_: {
|
|
# Use homebrew to install casks and Mac App Store apps
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation = {
|
|
autoUpdate = false;
|
|
cleanup = "none";
|
|
upgrade = false;
|
|
};
|
|
|
|
brews = [
|
|
];
|
|
|
|
casks = [
|
|
];
|
|
|
|
masApps = {
|
|
"wireguard" = 1451685025;
|
|
};
|
|
};
|
|
}
|