nixos-config/linux/nebula/conduit.nix

13 lines
216 B
Nix
Raw Normal View History

2023-10-09 10:44:07 -07:00
{ config, ... }:
{
services.matrix-conduit = {
enable = true;
settings.global = {
address = config.constants.localhost;
2023-11-27 21:44:04 -08:00
port = 29800;
2023-10-09 10:44:07 -07:00
server_name = config.constants.domain;
};
};
}