fix: inputs.systems (flake thunk) used like a list

This commit is contained in:
Emile Clark-Boman 2025-12-14 09:34:16 +10:00
parent c50945c0ef
commit 44f90fcffe

View file

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