diff --git a/hosts/yuki/services/conduit.nix b/hosts/yuki/services/conduit.nix new file mode 100644 index 0000000..c302099 --- /dev/null +++ b/hosts/yuki/services/conduit.nix @@ -0,0 +1,16 @@ +_: { + networking.firewall.allowedTCPPorts = [6167 8448]; + services.matrix-conduit = { + enable = true; + settings = { + global = { + address = "0.0.0.0"; + server_name = "forsen"; + allow_registration = true; + allow_federation = true; + allow_encryption = true; + trusted_servers = ["matrix.org"]; + }; + }; + }; +}