1
0
liminix/modules/watchdog/watchdog.nix

16 lines
282 B
Nix
Raw Permalink Normal View History

2023-09-02 16:28:40 +00:00
{
liminix,
lib,
s6,
2023-09-02 16:28:40 +00:00
}:
{ watched, headStart }:
2023-09-02 16:28:40 +00:00
let
inherit (liminix.services) longrun;
in
longrun {
2023-09-02 16:28:40 +00:00
name = "watchdog";
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
}