snowflake/hosts/sakura/services/conduit.nix

16 lines
360 B
Nix
Raw Normal View History

2023-06-21 18:31:03 -04:00
_: {
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"];
};
};
}