13 lines
244 B
Nix
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";
|
|
};
|
|
}
|