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,6 +1,9 @@
{ {
flake.modules.darwin.graphical.homebrew = { flake.modules.darwin.graphical.homebrew =
{ config, ... }:
{
enable = true; enable = true;
primaryUser = config.home.username;
onActivation.cleanup = "uninstall"; onActivation.cleanup = "uninstall";
casks = [ "ghostty" ]; casks = [ "ghostty" ];
}; };