Compare commits

..

5 commits

Author SHA1 Message Date
Bruno BELANYI 9a0f86baa4 home: nix: configure GC
Some checks failed
ci/woodpecker/push/check Pipeline failed
2024-10-28 10:44:20 +00:00
Bruno BELANYI df6e5a44c4 nixos: system: nix: configure GC 2024-10-28 10:44:20 +00:00
Bruno BELANYI 21418eeae5 flake: bump inputs 2024-10-28 10:44:20 +00:00
Bruno BELANYI b6fdc00c53 hosts: nixos: porthos: secrets: add matrix sync
Remove the secret, as it not used anymore.

This reverts commit 52413dcaf7.
2024-10-28 10:44:19 +00:00
Bruno BELANYI 2d05d4c049 modules: services: matrix: remove sliding sync
The functionality has been folded into `synapse` itself, and the module
has been removed from the unstable branch.

This reverts commit b4c2cc581b.
2024-10-28 10:42:37 +00:00

View file

@ -91,6 +91,17 @@ in
] ++ lib.optional (cfg.secretFile != null) cfg.secretFile;
};
services.matrix-sliding-sync = {
enable = true;
settings = {
SYNCV3_SERVER = "https://${matrixDomain}";
SYNCV3_BINDADDR = "127.0.0.1:${toString cfg.slidingSync.port}";
};
environmentFile = cfg.slidingSync.secretFile;
};
my.services.nginx.virtualHosts = {
# Element Web app deployment
chat = {