nix-darwin/modules/aspects/homebrew.nix
2026-05-19 22:37:46 +09:00

50 lines
869 B
Nix

{...}: {
flake.modules.darwin.homebrew = {config, ...}: {
nix-homebrew = {
enable = true;
enableRosetta = true;
user = config.repo.user.name;
mutableTaps = true;
};
homebrew = {
enable = true;
onActivation = {
autoUpdate = false;
cleanup = "zap";
extraFlags = [
"--verbose"
];
};
taps = [
"postmelee/tap"
];
masApps = {
KakaoTalk = 869223134;
Across = 6444851827;
Bitwarden = 1352778147;
};
casks = [
"alhangeul"
"arc"
"batfi"
"claude-code@latest"
"codex"
"hammerspoon"
"iina"
"keka"
"kekaexternalhelper"
"raycast"
"shottr"
"stats"
"telegram"
"thaw@beta"
"utm"
];
};
};
}