nixos-config/linux/nebula/conduit.nix

13 lines
248 B
Nix
Raw Normal View History

2023-10-09 10:44:07 -07:00
{ config, ... }:
{
services.matrix-conduit = {
enable = true;
2023-12-06 21:46:16 -08:00
settings.global = let const = config.constants; in {
address = const.tsMask;
port = const.port.conduit;
2023-10-09 10:44:07 -07:00
server_name = config.constants.domain;
};
};
}