14 lines
240 B
Nix
14 lines
240 B
Nix
|
{ tools, ... }:
|
||
|
|
||
|
{
|
||
|
services.meet = {
|
||
|
nodes.host = [ "prophet" ];
|
||
|
nixos.host = ./host.nix;
|
||
|
};
|
||
|
|
||
|
monitoring.blackbox.targets.jitsi-videobridge = {
|
||
|
address = "meet.${tools.meta.domain}:7777";
|
||
|
module = "tcpConnect";
|
||
|
};
|
||
|
}
|