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