nix-config/hosts/conduwuit/conduwuit.nix

27 lines
625 B
Nix

{ pkgs, inputs, ... }:
let
conduwuit-latest = inputs.conduwuit.packages.${pkgs.system}.all-features;
in
{
services.matrix-conduit = {
enable = true;
package = conduwuit-latest;
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";
};
};
};
};
}