feat(macos): install Google Chrome via Homebrew cask

Enable declarative Homebrew cask management on the macOS host so Google Chrome is installed during darwin activation and stale Homebrew items are cleaned up with zap.

Made-with: Cursor
This commit is contained in:
DannyDannyDanny 2026-03-24 15:17:19 +01:00
parent 463249961e
commit be4233a53b

View file

@ -29,6 +29,14 @@ in {
knownNetworkServices = [ "Wi-Fi" "Thunderbolt Bridge" ]; knownNetworkServices = [ "Wi-Fi" "Thunderbolt Bridge" ];
}; };
homebrew = {
enable = true;
casks = [
"google-chrome"
];
onActivation.cleanup = "zap";
};
# macOS niceties # macOS niceties
security.pam.services.sudo_local.touchIdAuth = true; security.pam.services.sudo_local.touchIdAuth = true;