nix-config/features/synapse-matrix.nix
2024-07-19 13:30:13 +02:00

21 lines
335 B
Nix

{ config, lib, ... }:
#TODO: implement
{
services.matrix-synapse = {
enable = true;
settings = {
serverName = "talk.hypervirtual.world";
enable_registration = false;
};
configureRedisLocally = true;
extras = [
"systemd"
"postgres"
"url-preview"
"user-search"
];
};
}