mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 21:29:33 +01:00
15 lines
212 B
Nix
15 lines
212 B
Nix
{ config, lib, ... }:
|
|
#TODO: implement
|
|
{
|
|
services.matrix-synapse = {
|
|
enable = true;
|
|
settings = {
|
|
serverName = "talk.hypervirtual.world";
|
|
};
|
|
|
|
redis = {
|
|
enabled = true;
|
|
};
|
|
};
|
|
}
|