Compare commits

...

2 commits

Author SHA1 Message Date
teutat3s a59e57c532
style: format using nixfmt-rfc-style
All checks were successful
Flake checks / Check (pull_request) Successful in 25m28s
2024-11-20 15:49:31 +01:00
Akshay Mankar 56f987e424
matrix: Enable rendezvous server
Some checks failed
Flake checks / Check (pull_request) Failing after 32s
This will allow sign-in and device verification using QR codes
2024-11-20 17:15:41 +05:30

View file

@ -264,6 +264,19 @@ in
user_ips_max_age = "28d";
app_service_config_files = config.pub-solar-os.matrix.synapse.app-service-config-files;
modules = [
{
module = "matrix_http_rendezvous_synapse.SynapseRendezvousModule";
config = {
prefix = "/_synapse/client/org.matrix.msc3886/rendezvous";
};
}
];
experimental_features = {
msc3886_endpoint = "/_synapse/client/org.matrix.msc3886/rendezvous";
};
};
withJemalloc = true;
@ -275,9 +288,14 @@ in
"redis"
];
plugins = [ config.services.matrix-synapse.package.plugins.matrix-synapse-shared-secret-auth ];
plugins = with config.services.matrix-synapse.package.plugins; [
matrix-synapse-shared-secret-auth
matrix-http-rendezvous-synapse
];
};
systemd.services.matrix-synapse.environment.SYNAPSE_ASYNC_IO_REACTOR = "1";
services.matrix-authentication-service = {
enable = true;
createDatabase = true;