add README, conduit

This commit is contained in:
andromeda
2026-01-13 05:53:57 +01:00
parent b25ce469b6
commit dcb82ed361
6 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{config, ...}: {
services.matrix-conduit = {
enable = true;
settings.global = {
server_name = "${config.networking.domain}";
address = "localhost";
database_backend = "rocksdb";
allow_registration = true;
allow_federation = true;
};
secretFile = config.age.secrets.conduit-secretFile.path;
};
}