14 lines
345 B
Nix
14 lines
345 B
Nix
{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;
|
|
};
|
|
}
|