12 lines
218 B
Nix
12 lines
218 B
Nix
{ config, ... }:
|
|
let
|
|
cfg = config.flake;
|
|
in
|
|
{
|
|
flake.modules.darwin.graphical.homebrew = {
|
|
enable = true;
|
|
user = cfg.admin.username;
|
|
onActivation.cleanup = "uninstall";
|
|
casks = [ "ghostty" ];
|
|
};
|
|
}
|