pantheon/nix/homes/rafiq/desktop/darwin.nix

10 lines
216 B
Nix

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