add conduwuit matrix server
This commit is contained in:
parent
c1352fdd88
commit
877e806b3a
8 changed files with 205 additions and 0 deletions
24
hosts/conduwuit/conduwuit.nix
Normal file
24
hosts/conduwuit/conduwuit.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue