add conduwuit matrix server

This commit is contained in:
Grisha Shipunov 2025-02-05 18:11:49 +00:00
parent c1352fdd88
commit 877e806b3a
8 changed files with 205 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ pkgs, ... }:
{
services.matrix-conduit = {
enable = true;
package = pkgs.conduwuit;
settings = {
global = {
database_backend = "rocksdb";
new_user_displayname_suffix = "";
port = 6167;
server_name = "oxapentane.com";
address = "0.0.0.0";
trusted_servers = [
"matrix.org"
"matrix.c3d2.de"
];
well_known = {
client = "https://oxapentane.com";
server = "oxapentane.com:443";
};
};
};
};
}