mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01:00
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:
parent
30e04f3d47
commit
509dbf8d45
1 changed files with 1 additions and 1 deletions
|
@ -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" ];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue