From 44032c3895c6ab6fbfdd176e7684b9dbbdf530da Mon Sep 17 00:00:00 2001 From: technofab Date: Thu, 16 Apr 2026 12:56:37 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20missed=20another=20fold=20=E2=86=92=20fo?= =?UTF-8?q?ldr?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/default.nix b/lib/default.nix index 7095c2c..0b333cd 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -84,7 +84,7 @@ in rec { else importedData; importedContents = map importAndProcessFile allNixFiles; - mergedFiles = fold (acc: item: recursiveUpdate acc item) {} importedContents; + mergedFiles = foldr (acc: item: recursiveUpdate acc item) {} importedContents; in mergedFiles; }