Zeit passiert

This commit is contained in:
mtgmonkey
2025-11-28 21:40:30 +01:00
parent ed5b9ace59
commit d2dc5b2ef4
5 changed files with 280 additions and 28 deletions

26
matrix.nix Normal file
View File

@@ -0,0 +1,26 @@
{
services.matrix-synapse = {
enable = true;
settings = {
server_name = "chat.mtgmonkey.net";
settings.public_baseurl = "https://chat.mtgmonkey.net";
settings.listeners = [
{
port = 8765;
bind_addresses = ["::1"];
type = "http";
tls = "false";
x_forwarded = "true";
resources = [
{
names = [
"client"
];
compress = true;
}
];
}
];
};
};
}