nix-config/features/synapse-matrix.nix

23 lines
341 B
Nix
Raw Normal View History

2024-07-15 16:50:14 +02:00
{ config, lib, ... }:
2024-07-15 16:27:23 +02:00
#TODO: implement
{
2024-07-18 17:17:01 +02:00
services.matrix-synapse = {
enable = true;
2024-07-18 22:40:20 +02:00
enable_registration = false;
2024-07-18 17:17:01 +02:00
settings = {
serverName = "talk.hypervirtual.world";
};
redis = {
enabled = true;
};
2024-07-18 22:40:20 +02:00
extras = [
"systemd"
"postgres"
"url-preview"
"user-search"
];
2024-07-18 17:17:01 +02:00
};
2024-07-15 16:27:23 +02:00
}