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
This commit is contained in:
Florian Jacob 2019-04-19 11:42:17 +02:00
parent 5e7e5a2062
commit 34aa25b8dc

View file

@ -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.
'';