about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorFlorian Jacob <projects+git@florianjacob.de>2019-04-19 11:42:17 +0200
committerFlorian Jacob <projects+git@florianjacob.de>2019-04-19 11:54:06 +0200
commit34aa25b8dc8e3299e7e5d8e3ad78d0a191d7ad80 (patch)
tree5aca2d986170ad619241ab5e1a03a2a905b47a7b /nixos
parent5e7e5a20629acd79bf648c44ff90707c581856e2 (diff)
downloadnixlib-34aa25b8dc8e3299e7e5d8e3ad78d0a191d7ad80.tar
nixlib-34aa25b8dc8e3299e7e5d8e3ad78d0a191d7ad80.tar.gz
nixlib-34aa25b8dc8e3299e7e5d8e3ad78d0a191d7ad80.tar.bz2
nixlib-34aa25b8dc8e3299e7e5d8e3ad78d0a191d7ad80.tar.lz
nixlib-34aa25b8dc8e3299e7e5d8e3ad78d0a191d7ad80.tar.xz
nixlib-34aa25b8dc8e3299e7e5d8e3ad78d0a191d7ad80.tar.zst
nixlib-34aa25b8dc8e3299e7e5d8e3ad78d0a191d7ad80.zip
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
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/misc/matrix-synapse.nix5
1 files changed, 4 insertions, 1 deletions
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.
         '';