Open thufschmitt opened 5 months ago
The nickel lockfile (nickel.lock.ncl) only points to organist by default. It is possible to extend it with something like that in the flake.nix file:
nickel.lock.ncl
organist
flake.nix
outputs = {organist, myNickelLib, ...} @ inputs: organist.flake.outputsFromNickel ./. inputs { lockFileContents = { organist = "${organist}/lib/organist.ncl"; myOtherInput = "${myNickelLib}/main.ncl"; }; }; }
However, this is
The nickel lockfile (
nickel.lock.ncl
) only points toorganist
by default. It is possible to extend it with something like that in theflake.nix
file:However, this is