From 2eace660972abc01f412731a5d5e339b677e4aef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sat, 9 Dec 2023 23:31:22 +0100 Subject: [PATCH] matrix: fix overwrite --- hosts/matrix/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hosts/matrix/default.nix b/hosts/matrix/default.nix index 32a159ab..eb61a593 100644 --- a/hosts/matrix/default.nix +++ b/hosts/matrix/default.nix @@ -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; });