matrix: fix overwrite

This commit is contained in:
Sandro - 2023-12-09 23:31:22 +01:00
parent a58313758a
commit 2eace66097
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 1 additions and 3 deletions

View File

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