From 519ed97c97cb32996b63d2e20349a5d82ad2edc1 Mon Sep 17 00:00:00 2001 From: technofab Date: Tue, 26 Aug 2025 14:45:34 +0200 Subject: [PATCH] fix(loader): fix infinite recursion oops --- lib/core/loader.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/loader.nix b/lib/core/loader.nix index 22888fd..76cb3f0 100644 --- a/lib/core/loader.nix +++ b/lib/core/loader.nix @@ -21,7 +21,7 @@ isDir = l.pathExists blockP.dir; signature = let - cell = cell // {__cr = [cellName cellBlock.name];}; + updatedCell = cell // {__cr = [cellName cellBlock.name];}; additionalInputs = if l.pathExists cellP.flake then @@ -33,7 +33,7 @@ }).outputs else {}; in - importSignatureFor system cell cells additionalInputs; + importSignatureFor system updatedCell cells additionalInputs; import' = importPath: let block = import importPath;