nix-configs/schrottserver/synapse.nix
2023-02-19 02:05:58 +01:00

11 lines
174 B
Nix

{ pkgs, ... }:
{
services.matrix-synapse = {
enable = true;
settings = {
server_name = "synapse.schrottkatze.de";
max_upload_size = "2G";
};
};
}