feat(darwin): Add primaryUser to homebrew config

This commit is contained in:
Mohammad Rafiq 2025-07-14 02:28:42 +08:00
parent 92e6da3645
commit cf6917e56d
No known key found for this signature in database

View file

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