fix outputs missing self

This commit is contained in:
Emile Clark-Boman 2025-12-14 09:11:28 +10:00
parent 6a00621981
commit 4722d566ff

View file

@ -3,6 +3,10 @@
inputs.systems.url = "github:nix-systems/default";
outputs = {systems}:
outputs = {
self,
systems,
...
}:
import ./nib {inherit systems;};
}