feat: format and fix noisebell config

This commit is contained in:
Jet 2026-03-23 00:04:46 -07:00
parent 3e78c835cc
commit d0b29c1244
No known key found for this signature in database
10 changed files with 211 additions and 101 deletions

View file

@ -7,7 +7,7 @@
settings = {
server_name = "extremist.software";
public_baseurl = "https://matrix.extremist.software";
listeners = [
{
port = 8008;
@ -17,13 +17,16 @@
x_forwarded = true;
resources = [
{
names = [ "client" "federation" ];
names = [
"client"
"federation"
];
compress = false;
}
];
}
];
enable_registration = false;
database = {
name = "psycopg2";
@ -42,10 +45,11 @@
services.postgresql = {
enable = true;
ensureDatabases = [ "matrix-synapse" ];
ensureUsers = [{
name = "matrix-synapse";
ensureDBOwnership = true;
}];
ensureUsers = [
{
name = "matrix-synapse";
ensureDBOwnership = true;
}
];
};
}