megasync: fix issue with service failing to launch

Change `After=` setting in the user service to only launch after the
full `graphical-session.target`.
This commit is contained in:
Christophe Van den Abbeele 2024-09-27 17:55:16 +02:00 committed by Robert Helgesson
parent 30e04f3d47
commit 509dbf8d45
Failed to generate hash of commit

View file

@ -28,7 +28,7 @@ in {
systemd.user.services.megasync = {
Unit = {
Description = "megasync";
After = [ "graphical-session-pre.target" ];
After = [ "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
};