15 lines
360 B
Nix
15 lines
360 B
Nix
_: {
|
|
networking.firewall.allowedTCPPorts = [6167 8448];
|
|
services.matrix-conduit = {
|
|
enable = true;
|
|
settings.global = {
|
|
address = "0.0.0.0";
|
|
port = 6167;
|
|
server_name = "notohh.dev";
|
|
allow_registration = true;
|
|
allow_federation = true;
|
|
allow_encryption = true;
|
|
trusted_servers = ["matrix.org"];
|
|
};
|
|
};
|
|
}
|