Files
conf/modules/nixos/matrix-conduit.nix
2026-01-13 05:53:57 +01:00

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;
};
}