mirror of
https://gitlab.com/rensa-nix/core.git
synced 2025-12-12 06:10:08 +01:00
fix(loader): fix infinite recursion oops
This commit is contained in:
parent
3406fdda5b
commit
519ed97c97
1 changed files with 2 additions and 2 deletions
|
|
@ -21,7 +21,7 @@
|
||||||
isDir = l.pathExists blockP.dir;
|
isDir = l.pathExists blockP.dir;
|
||||||
|
|
||||||
signature = let
|
signature = let
|
||||||
cell = cell // {__cr = [cellName cellBlock.name];};
|
updatedCell = cell // {__cr = [cellName cellBlock.name];};
|
||||||
additionalInputs =
|
additionalInputs =
|
||||||
if l.pathExists cellP.flake
|
if l.pathExists cellP.flake
|
||||||
then
|
then
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
}).outputs
|
}).outputs
|
||||||
else {};
|
else {};
|
||||||
in
|
in
|
||||||
importSignatureFor system cell cells additionalInputs;
|
importSignatureFor system updatedCell cells additionalInputs;
|
||||||
|
|
||||||
import' = importPath: let
|
import' = importPath: let
|
||||||
block = import importPath;
|
block = import importPath;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue