nixos-config/linux/nebula/conduit.nix
2023-11-27 21:44:04 -08:00

12 lines
216 B
Nix

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