pantheon/nix/homes/rafiq/desktop/darwin.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" ];
};
}