From a38010b90066b3490ea2e6ab5357a1236e7fa162 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Fri, 10 Jan 2025 15:33:14 +0100 Subject: [PATCH] use string merginf not list merging --- nixos-modules/nix/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos-modules/nix/default.nix b/nixos-modules/nix/default.nix index 82fb255..df32e4f 100644 --- a/nixos-modules/nix/default.nix +++ b/nixos-modules/nix/default.nix @@ -134,7 +134,7 @@ in sha256 = "sha256-VDn3kQy23+QC2WKhWfe0FrUOnLuI1YwH5GxdTTVWt+A="; }) ]; - postPatch = oldAttrs.postPatch ++ '' + postPatch = oldAttrs.postPatch + '' substituteInPlace tests/storage/databases/main/test_events_worker.py \ --replace-fail "def test_recovery" "def no_test_recovery" '';