nixos-config/linux/nebula/conduit.nix
2023-12-06 21:46:16 -08:00

12 lines
248 B
Nix

{ config, ... }:
{
services.matrix-conduit = {
enable = true;
settings.global = let const = config.constants; in {
address = const.tsMask;
port = const.port.conduit;
server_name = config.constants.domain;
};
};
}