tfc-nixos/modules/matrix.nix
2024-06-14 15:33:46 -05:00

19 lines
410 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
services.matrix-synapse = {
enable = false;
configureRedisLocally = true;
withJemalloc = true;
settings = {
enable_metrics = true;
enable_registration = true;
dynamic_thumbnails = true;
max_upload_size = "100M";
public_baseurl = "https://matrix.tfcconnection.org/";
server_name = "tfcconnection.org";
};
};
}