nixos-config/linux/nebula/conduit.nix
2025-10-15 22:24:44 -07:00

10 lines
208 B
Nix

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