Files
nixconf/hosts/nixcloud/services.d/matrix.d/homeserver.nix
T
2026-07-26 11:02:16 -06:00

20 lines
369 B
Nix

{
services.matrix-continuwuity = {
enable = true;
settings = {
admin = {
enable = true;
};
global = {
address = [ "127.0.0.1" ];
server_name = "k3t.dev";
trusted_servers = [
"matrix.org"
"constellatory.net"
"unredacted.org"
"tchncs.de"
];
};
};
};
}