system/msi: fix mcontrolcenter not appearing in tray

This commit is contained in:
outfoxxed 2025-02-28 16:49:57 -08:00
parent 8a47ecd469
commit 5f26ed0524
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E

View file

@ -11,8 +11,9 @@
systemd.user.services.mcontrolcenter = {
description = "Launch mcontrolcenter";
requires = [ "tray.target" ];
after = [ "graphical-session-pre.target" "tray.target" ];
after = [ "tray.target" ];
partOf = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ];
script = lib.getExe pkgs.mcontrolcenter;
};
}