nixos-config/linux/nebula/conduit.nix

11 lines
208 B
Nix
Raw Permalink Normal View History

2024-08-14 11:14:20 -07:00
{config, ...}: {
2024-08-31 23:53:22 -07:00
services.matrix-conduit = with config.constants; {
enable = true;
settings.global = {
address = wildcard;
port = port.conduit;
server_name = domain;
2023-10-09 10:44:07 -07:00
};
};
}