1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-22 04:57:26 +02: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:
Christophe Van den Abbeele 2024-09-27 17:55:16 +02:00 committed by Robert Helgesson
parent 30e04f3d47
commit 509dbf8d45
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED

View file

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