nixos-config/linux/nebula/conduit.nix
2023-12-06 23:34:51 -08:00

12 lines
211 B
Nix

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