darwin: add brew for installing apps

This commit is contained in:
Nico 2025-05-03 16:16:00 +10:00
parent 8182ae4eb0
commit d5f3167d99
2 changed files with 15 additions and 0 deletions

14
modules/darwin/brew.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }:
{
homebrew = {
enable = true;
onActivation.cleanup = "zap";
casks = [
"firefox"
"thunderbird"
"ghostty"
"whisky"
];
};
}