WIP: Livekit

This commit is contained in:
2026-04-30 13:22:20 +02:00
parent d46ce2d93e
commit 59907f7ece
8 changed files with 56 additions and 74 deletions
+19
View File
@@ -0,0 +1,19 @@
{ config, ... }:
let
domain = "cyperpunk.de";
synapseUrl = "http://100.109.179.25:8008";
in
{
sops.secrets.livekit_key = { };
services.lk-jwt-service = {
enable = true;
keyFile = config.sops.secrets.livekit_key.path;
livekitUrl = "wss://cyperpunk.de/livekit/sfu";
};
systemd.services.lk-jwt-service.environment = {
LIVEKIT_FULL_ACCESS_HOMESERVERS = domain;
MATRIX_BASE_URL = synapseUrl;
};
}