nixos-config/linux/nebula/conduit.nix

10 lines
208 B
Nix

{config, ...}: {
services.matrix-conduit = {
enable = true;
settings.global = with config.constants; {
address = wildcard;
port = port.conduit;
server_name = domain;
};
};
}