extremist-software/modules/matrix.nix
2026-02-16 21:29:21 -08:00

16 lines
331 B
Nix

{ config, pkgs, ... }:
{
services.matrix-conduit = {
enable = true;
settings = {
global = {
server_name = "matrix.extremist.software";
allow_registration = true; # Disable after creating first user
port = 6167;
};
};
};
networking.firewall.allowedTCPPorts = [ 6167 8448 ];
}