fix(home/swaybg): Make it so the systemd unit can actually succeed at boot
This commit is contained in:
parent
bccc720ab1
commit
41742c1ad0
1 changed files with 6 additions and 3 deletions
|
@ -15,14 +15,14 @@ in {
|
|||
|
||||
systemd.user.services.swaybg = {
|
||||
Install = {
|
||||
WantedBy = ["graphical-session.target"];
|
||||
WantedBy = ["xdg-desktop-autostart.target"];
|
||||
};
|
||||
|
||||
Unit = {
|
||||
Description = "Wallpaper tool for Wayland compositors";
|
||||
Documentation = ["man:swaybg(1)"];
|
||||
After = ["graphical-session-pre.target"];
|
||||
PartOf = ["graphical-session.target"];
|
||||
After = ["graphical-session.target"];
|
||||
PartOf = ["xdg-desktop-autostart.target"];
|
||||
};
|
||||
|
||||
Service = {
|
||||
|
@ -31,6 +31,9 @@ in {
|
|||
ExecReload = "${lib.getExe' pkgs.coreutils "kill"} -SIGUSR2 $MAINPID";
|
||||
KillMode = "mixed";
|
||||
Restart = "on-failure";
|
||||
RestartSec = "1s";
|
||||
RestartMaxDelaySec = "30s";
|
||||
RestartSteps = 10;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue