blob: 5b2bb3fc291a40d89ea2ad16c1da74be0279b084 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{ lib, pkgs }:
let
checkNetwork =
hosts:
let
pkg = pkgs.writeShellApplication {
name = "check-network";
runtimeInputs = [ pkgs.toybox ];
text = ''
for _ in {1..5}
do
(${lib.concatMapStringsSep " && " (host: "ping -c 1 ${host}") hosts}) && exit 0
sleep 30
done
exit 1
'';
};
in
"${pkg}/bin/check-network";
in
{
home.serviceWithTimer =
name:
{
Unit,
Service,
# Timer,
Install,
...
}@config:
{
services.${name} = { inherit (config) Unit Service; };
timers.${name} = {
inherit (config) Unit Install;
Timer = config.Timer // {
Unit = "${name}.service";
};
};
};
home.checkNetwork =
{
hosts,
...
}:
{
# Check network connectivity
Service = lib.mkMerge [
{
ExecStartPre = checkNetwork hosts;
}
];
};
checkNetwork =
{
hosts,
...
}:
{
# Check network connectivity
preStart = checkNetwork hosts;
};
}
|