summaryrefslogtreecommitdiff
path: root/sys/conduit
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-08-13 03:23:15 -0600
committerAlejandro Soto <alejandro@34project.org>2024-08-13 03:28:19 -0600
commitc110570f008472958bd700d04f02fa3d1f9209fe (patch)
tree6c8c64fedc6e8fc71d62b0cebfd13387caab02e9 /sys/conduit
parent81ab829ddcde926f6f4c5edd1cd19eca009a597b (diff)
sys/web/sites/matrix: enable sliding sync
Diffstat (limited to 'sys/conduit')
-rw-r--r--sys/conduit/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/conduit/default.nix b/sys/conduit/default.nix
index 1d59469..597960b 100644
--- a/sys/conduit/default.nix
+++ b/sys/conduit/default.nix
@@ -2,6 +2,7 @@
with lib; let
cfg = config.local.conduit;
+ fqdn = config.local.domains.matrix.main;
inherit (config.local.domains.matrix.passthru) serverName;
in
{
@@ -38,6 +39,11 @@ in
enable_lightning_bolt = false;
allow_check_for_updates = true;
new_user_displayname_suffix = "";
+
+ well_known = {
+ client = "https://${fqdn}";
+ server = "${fqdn}:443";
+ };
};
};
};