nix-config/hosts/conduwuit/conduwuit.nix

28 lines
625 B
Nix
Raw Normal View History

2025-02-06 23:27:09 +00:00
{ pkgs, inputs, ... }:
let
conduwuit-latest = inputs.conduwuit.packages.${pkgs.system}.all-features;
in
2025-02-05 18:11:49 +00:00
{
services.matrix-conduit = {
enable = true;
2025-02-06 23:27:09 +00:00
package = conduwuit-latest;
2025-02-05 18:11:49 +00:00
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";
};
};
};
};
}