depot/cluster/services/meet/default.nix
2023-09-03 01:11:49 +02:00

13 lines
244 B
Nix

{ depot, ... }:
{
services.meet = {
nodes.host = [ "prophet" ];
nixos.host = ./host.nix;
};
monitoring.blackbox.targets.jitsi-videobridge = {
address = "meet.${depot.lib.meta.domain}:7777";
module = "tcpConnect";
};
}