nix-configs/schrottserver/synapse.nix

11 lines
174 B
Nix
Raw Normal View History

2023-02-19 01:04:30 +00:00
{ pkgs, ... }:
{
services.matrix-synapse = {
enable = true;
settings = {
server_name = "synapse.schrottkatze.de";
max_upload_size = "2G";
};
};
}