16 lines
331 B
Nix
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 ];
|
|
}
|