add conduwuit

This commit is contained in:
Grisha Shipunov 2025-02-05 21:41:26 +00:00
parent d8e80933f7
commit 9b6aa48264
3 changed files with 64 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ pkgs, ... }:
{
services.matrix-conduit = {
enable = true;
package = pkgs.conduwuit;
settings = {
global = {
database_backend = "rocksdb";
new_user_displayname_suffix = "";
port = 6167;
server_name = "oxapentane.com";
well_known = {
client = "https://oxapentane.com";
server = "oxapentane.com:433";
};
};
};
};
}

View file

@ -4,6 +4,7 @@ let
in
{
imports = [
./conduwuit.nix
];
sops.defaultSopsFile = ./secrets.yaml;
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];