diff --git a/nixos/roles/matrix/clients.nix b/nixos/roles/matrix/clients.nix index 72dc43d..9080901 100644 --- a/nixos/roles/matrix/clients.nix +++ b/nixos/roles/matrix/clients.nix @@ -129,11 +129,6 @@ let features = { feature_group_calls = true; }; - element_call = { - url = "https://livekit.cyperpunk.de"; - participant_limit = 8; - brand = "Element Call"; - }; } ); elementWebConfigured = pkgs.element-web.overrideAttrs (old: { diff --git a/nixos/roles/matrix/synapse.nix b/nixos/roles/matrix/synapse.nix index 470f167..af19e66 100644 --- a/nixos/roles/matrix/synapse.nix +++ b/nixos/roles/matrix/synapse.nix @@ -16,10 +16,6 @@ owner = "matrix-synapse"; group = "matrix-synapse"; }; - matrix_turn_secret = { - owner = "matrix-synapse"; - group = "matrix-synapse"; - }; }; services = { @@ -34,21 +30,9 @@ suppress_key_server_warning = true; registration_shared_secret_path = config.sops.secrets.matrix_registration_secret.path; macaroon_secret_key = "$__file{${config.sops.secrets.matrix_macaroon_secret.path}}"; - turn_uris = [ - "turn:turn.cyperpunk.de?transport=udp" - "turn:turn.cyperpunk.de?transport=tcp" - ]; - turn_shared_secret_path = config.sops.secrets.matrix_turn_secret.path; - turn_user_lifetime = "1h"; experimental_features = { "msc3266_enabled" = true; }; - extra_well_known_client_content = { - "io.element.call.backend" = { - url = "https://livekit.cyperpunk.de"; - livekit_service_url = "https://livekit.cyperpunk.de/_matrix/livekit/jwt"; - }; - }; listeners = [ { port = 8008;