nixfiles/hosts/hetzner-vm/containers/matrix/profiles/matrix.nix

15 lines
220 B
Nix
Raw Normal View History

2022-12-20 15:28:31 +00:00
{
inputs,
pkgs,
...
}: {
services.matrix-conduit = {
enable = true;
settings.global = {
address = "0.0.0.0";
allow_registration = true;
server_name = "matrix.owo.monster";
};
};
}