matrix homeserver

This commit is contained in:
k3t
2026-07-26 11:02:16 -06:00
parent 71e7cf84b7
commit 13cd25557c
2 changed files with 21 additions and 0 deletions
+1
View File
@@ -7,6 +7,7 @@
{
imports =
(lib.filesystem.listFilesRecursive ./services.d)
++ (lib.filesystem.listFilesRecursive ./services.d/matrix.d)
++ [ # Include the results of the hardware scan.
./hardware-configuration.nix
];
@@ -0,0 +1,20 @@
{
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"
];
};
};
};
}