15 lines
220 B
Nix
15 lines
220 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services.matrix-conduit = {
|
|
enable = true;
|
|
settings.global = {
|
|
address = "0.0.0.0";
|
|
allow_registration = true;
|
|
server_name = "matrix.owo.monster";
|
|
};
|
|
};
|
|
}
|