depot/cluster/services/meet/default.nix

14 lines
244 B
Nix
Raw Normal View History

2023-08-31 01:55:45 +03:00
{ depot, ... }:
{
services.meet = {
nodes.host = [ "prophet" ];
nixos.host = ./host.nix;
};
monitoring.blackbox.targets.jitsi-videobridge = {
2023-08-31 01:55:45 +03:00
address = "meet.${depot.lib.meta.domain}:7777";
module = "tcpConnect";
};
}