mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 11:05:14 +00:00
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:
parent
5e7e5a2062
commit
34aa25b8dc
@ -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…
Reference in New Issue
Block a user