From 34aa25b8dc8e3299e7e5d8e3ad78d0a191d7ad80 Mon Sep 17 00:00:00 2001 From: Florian Jacob Date: Fri, 19 Apr 2019 11:42:17 +0200 Subject: nixos/matrix-synapse: correct trusted_third_party_id_servers default the servers are equivalent and synchronized, but Riot defaults to use vector.im Source: https://github.com/matrix-org/synapse/blob/v0.99.3/docs/sample_config.yaml#L701 --- nixos/modules/services/misc/matrix-synapse.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'nixos') diff --git a/nixos/modules/services/misc/matrix-synapse.nix b/nixos/modules/services/misc/matrix-synapse.nix index 5e465926b832..00c8e7408030 100644 --- a/nixos/modules/services/misc/matrix-synapse.nix +++ b/nixos/modules/services/misc/matrix-synapse.nix @@ -554,7 +554,10 @@ in { }; trusted_third_party_id_servers = mkOption { type = types.listOf types.str; - default = ["matrix.org"]; + default = [ + "matrix.org" + "vector.im" + ]; description = '' The list of identity servers trusted to verify third party identifiers by this server. ''; -- cgit 1.4.1