fix self not propagated

This commit is contained in:
do butterflies cry? 2026-02-16 08:19:07 +10:00
parent 2cff3119cd
commit 803f759472

View file

@ -36,13 +36,14 @@
}; };
outputs = { outputs = {
self,
nixpkgs, nixpkgs,
nt, nt,
... ...
} @ inputs: } @ inputs:
import ./cerulean import ./cerulean
{ {
inherit inputs nt; inherit inputs self nt;
inherit (nixpkgs) lib; inherit (nixpkgs) lib;
inherit (nt) mix; inherit (nt) mix;
}; };