This commit is contained in:
Ellie 2026-04-30 13:27:04 -07:00
parent 195fe024ca
commit 7d7ea0f295
3 changed files with 16 additions and 12 deletions

9
flake.lock generated
View file

@ -27,15 +27,16 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1777481115, "lastModified": 1777364820,
"narHash": "sha256-9YKAG9ErJz4/HpiMpmixKJo+IKkRnXhoaSfkoOyj2o0=", "narHash": "sha256-XHxV1V62RJlU/Y49WD6fNIyESJCHKMVwuoN+WIa3gLg=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "e6cae5b8eda99337ca78b1500e913932f966c9f4", "rev": "1cc9dbf2a47b7b329507cc4ddc970e10b968121c",
"revCount": 6730, "revCount": 6618,
"type": "git", "type": "git",
"url": "https://forgejo.ellis.link/continuwuation/continuwuity" "url": "https://forgejo.ellis.link/continuwuation/continuwuity"
}, },
"original": { "original": {
"rev": "1cc9dbf2a47b7b329507cc4ddc970e10b968121c",
"type": "git", "type": "git",
"url": "https://forgejo.ellis.link/continuwuation/continuwuity" "url": "https://forgejo.ellis.link/continuwuation/continuwuity"
} }

View file

@ -13,7 +13,11 @@
}; };
continuwuity = { continuwuity = {
url = "git+https://forgejo.ellis.link/continuwuation/continuwuity"; # Pinned: revs after 1cc9dbf2 (revCount > 6618) bumped ruma to a version
# where RtcFocusInfo / RtcTransport use a hand-rolled
# Box::<RawJsonValue>::deserialize impl that toml-rs can't satisfy,
# breaking any non-empty matrix_rtc.foci config.
url = "git+https://forgejo.ellis.link/continuwuation/continuwuity?rev=1cc9dbf2a47b7b329507cc4ddc970e10b968121c";
}; };
dicebot = { dicebot = {

View file

@ -28,17 +28,16 @@
turn_secret_file = config.sops.secrets."coturn/auth_secret_home".path; turn_secret_file = config.sops.secrets."coturn/auth_secret_home".path;
turn_ttl = 86400; turn_ttl = 86400;
matrix_rtc.foci = []; matrix_rtc.foci = [
well_known = {
client = "https://matrix.ellie.town";
server = "matrix.ellie.town:443";
rtc_focus_server_urls = [
{ {
type = "livekit"; type = "livekit";
livekit_service_url = "https://lk-jwt.ellie.town"; livekit_service_url = "https://lk-jwt.ellie.town";
} }
]; ];
well_known = {
client = "https://matrix.ellie.town";
server = "matrix.ellie.town:443";
}; };
}; };
}; };