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
wip/yesman
Florian Jacob 5 years ago
parent 5e7e5a2062
commit 34aa25b8dc
  1. 5
      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.
'';

Loading…
Cancel
Save