nix/darwin/homebrew.nix
2025-04-05 02:14:48 -05:00

34 lines
621 B
Nix

{ pkgs, user, inputs, ... }:
{
nix-homebrew = {
inherit user;
enable = true;
enableRosetta = true;
taps = {
"homebrew/homebrew-core" = inputs.homebrew-core;
"homebrew/homebrew-cask" = inputs.homebrew-cask;
"homebrew/homebrew-createzap" = inputs.homebrew-createzap;
};
mutableTaps = false;
};
homebrew = {
enable = true;
onActivation = {
# autoUpdate = true;
# cleanup = "zap";
};
global = {
brewfile = true;
};
casks = [
"zen-browser"
"webex"
"slack"
"zoom"
"spotify"
"ghostty"
];
};
}