10 lines
216 B
Nix
10 lines
216 B
Nix
{
|
|
flake.modules.darwin.graphical.homebrew =
|
|
{ config, ... }:
|
|
{
|
|
enable = true;
|
|
primaryUser = config.home.username;
|
|
onActivation.cleanup = "uninstall";
|
|
casks = [ "ghostty" ];
|
|
};
|
|
}
|