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

19 lines
291 B
Nix

{ config, ... }:
let
cfg = config.flake;
in
{
flake.modules.darwin.graphical.homebrew = {
enable = true;
user = cfg.admin.username;
onActivation.cleanup = "uninstall";
brews = [
"mise"
"docker"
];
casks = [
"ghostty"
"slack"
];
};
}