Compare commits

..

2 Commits

Author SHA1 Message Date
58d2f550be ??
All checks were successful
Deploy NixOS / deploy (push) Successful in 36s
2026-02-12 23:50:11 -07:00
365adbc6f6 Element Call wasn't working properly 2026-02-12 23:49:56 -07:00

View File

@@ -3,6 +3,7 @@
let
serverName = "atri.dad";
matrixDomain = "matrix.atri.dad";
matrixRtcDomain = "matrixrtc.atri.dad";
wellKnownServer = builtins.toJSON {
"m.server" = "${matrixDomain}:443";
@@ -12,6 +13,12 @@ let
"m.homeserver" = {
base_url = "https://${matrixDomain}";
};
"org.matrix.msc4143.rtc_foci" = [
{
type = "livekit";
livekit_service_url = "https://${matrixRtcDomain}";
}
];
};
in
{