1
0
Fork 0
NixOS/hosts/greatyamada/services/matrix-internal.nix
2024-06-28 18:15:13 +02:00

14 lines
284 B
Nix

{ }: {
containers.matrix-bridges = {
autoStart = true;
config = { config, pkgs }: {
services.matrix-synapse = {
enable = true;
settings = {
server_name = "matrix-int.rcia.dev";
listeners = [ { } ];
};
};
};
};
}