sakura: remove matrix

This commit is contained in:
notohh 2025-04-09 05:23:55 -04:00
parent f934aa56b9
commit b27907c1ab
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 0 additions and 30 deletions
hosts/sakura/services

View file

@ -10,7 +10,6 @@
./wastebin.nix
./ganymede.nix
./immich-proxy.nix
./matrix.nix
./hedgedoc.nix
];
}

View file

@ -1,29 +0,0 @@
{pkgs, ...}: {
networking.firewall.allowedTCPPorts = [6167 8448];
services.matrix-conduit = {
enable = true;
package = pkgs.conduwuit;
settings = {
global = {
address = "0.0.0.0";
server_name = "matrix.flake.sh";
allow_registration = false;
allow_federation = true;
allow_encryption = true;
max_concurrent_requests = 100;
max_request_size = 20000000;
database_backend = "rocksdb";
enable_lightning_bolt = false;
trusted_servers = ["matrix.org"];
url_preview_domain_contains_allowlist = ["*"];
new_user_displayname_suffix = "";
# yes_i_am_very_very_sure_i_want_an_open_registration_server_prone_to_abuse = true;
log = "info";
well_known = {
client = "https://matrix.flake.sh";
server = "matrix.flake.sh:443";
};
};
};
};
}