dots/modules/darwin/brew.nix

14 lines
194 B
Nix

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