nix-config/features/synapse-matrix.nix
2024-07-18 17:17:01 +02:00

15 lines
212 B
Nix

{ config, lib, ... }:
#TODO: implement
{
services.matrix-synapse = {
enable = true;
settings = {
serverName = "talk.hypervirtual.world";
};
redis = {
enabled = true;
};
};
}