diff --git a/hosts/containers/nncp/default.nix b/hosts/containers/nncp/default.nix index 84f0b600..1f00e497 100644 --- a/hosts/containers/nncp/default.nix +++ b/hosts/containers/nncp/default.nix @@ -20,9 +20,8 @@ mcd-send.eth0 = 60; neigh = # use c3d2.nncp.neigh but remove this node let - nightCall = { - cron = "0 0 4 * * * *"; # 4:00 - maxonlinetime = 14400; # vier stunde + hourlyCall = { + cron = "0 42 * * * * *"; # 4:00 xx = "tx"; # transmit only when-tx-exists = true; }; @@ -30,7 +29,7 @@ value // { via = lib.lists.remove "c3d2" value.via; } // (lib.attrsets.optionalAttrs (value.addrs or { } != { }) { - calls = [ nightCall ]; + calls = [ hourlyCall ]; })) (builtins.removeAttrs config.c3d2.nncp.neigh [ "c3d2" ]); }; };