diff --git a/systems/msi/mcontrolcenter.nix b/systems/msi/mcontrolcenter.nix
index a7e8aef..bf7cdae 100644
--- a/systems/msi/mcontrolcenter.nix
+++ b/systems/msi/mcontrolcenter.nix
@@ -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;
   };
 }