matrix: use correct override

This commit is contained in:
Sandro - 2023-07-02 20:39:00 +02:00
parent 55555551a3
commit 7777770a21
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 1 additions and 2 deletions

View File

@ -13,10 +13,9 @@
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 (_: {
matrix-synapse = prev.matrix-synapse.overridePythonAttrs (_: {
# fail and take a good amount of time
doCheck = false;
doInstallCheck = false;
});
})
];