nixos-config/linux/nebula/conduit.nix

13 lines
211 B
Nix
Raw Normal View History

2023-10-09 10:44:07 -07:00
{ config, ... }:
{
services.matrix-conduit = {
enable = true;
2023-12-06 23:34:51 -08:00
settings.global = with config.constants; {
address = wildcard;
port = port.conduit;
server_name = domain;
2023-10-09 10:44:07 -07:00
};
};
}