From 44f90fcffe2635813f68dd0ad2b862f3e7cca607 Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sun, 14 Dec 2025 09:34:16 +1000 Subject: [PATCH] fix: inputs.systems (flake thunk) used like a list --- flake.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 745e653..fce19ff 100644 --- a/flake.nix +++ b/flake.nix @@ -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;}; }