diff --git a/config/services.nix b/config/services.nix index 9fcdb35..0ce971b 100644 --- a/config/services.nix +++ b/config/services.nix @@ -8,6 +8,7 @@ rec { server_name = "nudelerde.de"; trusted_servers = [ "matrix.org" ]; memory_max = "512M"; + livekit_url = "https://livekit.nudelerde.de/livekit/jwt"; }; qbittorrent = { diff --git a/services/continuwuity.nix b/services/continuwuity.nix index 19ab9f6..4da8dfc 100644 --- a/services/continuwuity.nix +++ b/services/continuwuity.nix @@ -20,6 +20,11 @@ in allow_federation = true; max_request_size = 20 * 1024 * 1024; # 20 MiB trusted_servers = trustedServers; + matrix_rtc = { + foci = [ + { type = "livekit"; livekit_service_url = serv.continuwuity.livekit_url; } + ]; + }; }; }; };