Merge pull request #95986 from turboMaCk/imwheel-service
nixos/services.imwheel: sleep 3s before restarting
This commit is contained in:
commit
af1ac757ff
1 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,8 @@ in
|
||||||
"--kill"
|
"--kill"
|
||||||
] ++ cfg.extraOptions);
|
] ++ cfg.extraOptions);
|
||||||
ExecStop = "${pkgs.procps}/bin/pkill imwheel";
|
ExecStop = "${pkgs.procps}/bin/pkill imwheel";
|
||||||
Restart = "on-failure";
|
RestartSec = 3;
|
||||||
|
Restart = "always";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue