19 lines
291 B
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"
|
|
];
|
|
};
|
|
}
|