10 lines
208 B
Nix
10 lines
208 B
Nix
{config, ...}: {
|
|
services.matrix-conduit = with config.constants; {
|
|
enable = true;
|
|
settings.global = {
|
|
address = wildcard;
|
|
port = port.conduit;
|
|
server_name = domain;
|
|
};
|
|
};
|
|
}
|