2023-09-02 16:28:40 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
lib,
|
|
|
|
s6,
|
2023-09-02 16:28:40 +00:00
|
|
|
}:
|
2025-02-10 21:55:08 +00:00
|
|
|
{ watched, headStart }:
|
2023-09-02 16:28:40 +00:00
|
|
|
let
|
|
|
|
inherit (liminix.services) longrun;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
longrun {
|
2023-09-02 16:28:40 +00:00
|
|
|
name = "watchdog";
|
2025-02-10 21:55:08 +00:00
|
|
|
run = "PATH=${s6}/bin:$PATH HEADSTART=${toString headStart} ${./gaspode.sh} ${
|
|
|
|
lib.concatStringsSep " " (builtins.map (s: s.name) watched)
|
|
|
|
}";
|
2023-09-02 16:28:40 +00:00
|
|
|
}
|