matrix: disable failing tests

This commit is contained in:
Sandro - 2023-05-29 21:44:35 +02:00
parent 8888888467
commit 90016a351b
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 12 additions and 0 deletions

View File

@ -9,6 +9,18 @@
networking.hostName = "matrix";
#
nixpkgs.overlays = [
(final: prev: {
# NOTE: using config.services.matrix-synapse.package does not work because it does not override the matrix-synapse used in matrix-synapse.plugins.matrix-synapse-ldap3
matrix-synapse = prev.matrix-synapse.overrideAttrs (_: {
# fail and take a good amount of time
doCheck = false;
doInstallCheck = false;
});
})
];
services = {
backup.paths = [ "/var/lib/matrix-synapse/" ];