fix(home/swaybg): Make it so the systemd unit can actually succeed at boot

This commit is contained in:
punkfairie 2025-03-03 19:22:07 -08:00
parent bccc720ab1
commit 41742c1ad0
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -15,14 +15,14 @@ in {
systemd.user.services.swaybg = { systemd.user.services.swaybg = {
Install = { Install = {
WantedBy = ["graphical-session.target"]; WantedBy = ["xdg-desktop-autostart.target"];
}; };
Unit = { Unit = {
Description = "Wallpaper tool for Wayland compositors"; Description = "Wallpaper tool for Wayland compositors";
Documentation = ["man:swaybg(1)"]; Documentation = ["man:swaybg(1)"];
After = ["graphical-session-pre.target"]; After = ["graphical-session.target"];
PartOf = ["graphical-session.target"]; PartOf = ["xdg-desktop-autostart.target"];
}; };
Service = { Service = {
@ -31,6 +31,9 @@ in {
ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID"; ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID";
KillMode = "mixed"; KillMode = "mixed";
Restart = "on-failure"; Restart = "on-failure";
RestartSec = "1s";
RestartMaxDelaySec = "30s";
RestartSteps = 10;
}; };
}; };
}; };