nix-config/hosts/conduwuit/conduwuit.nix

21 lines
443 B
Nix
Raw Normal View History

2025-02-05 21:41:26 +00:00
{ pkgs, ... }:
{
services.matrix-conduit = {
enable = true;
package = pkgs.conduwuit;
settings = {
global = {
database_backend = "rocksdb";
new_user_displayname_suffix = "";
port = 6167;
server_name = "oxapentane.com";
2025-02-05 22:49:43 +00:00
address = "0.0.0.0";
2025-02-05 21:41:26 +00:00
well_known = {
client = "https://oxapentane.com";
server = "oxapentane.com:433";
};
};
};
};
}