From c50945c0ef060636130dcd6ae7c705122e146f4b Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Sun, 14 Dec 2025 09:29:16 +1000 Subject: [PATCH] fix incorrect call to genAttrs --- nib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nib/default.nix b/nib/default.nix index 2c61cb5..d49e1a4 100644 --- a/nib/default.nix +++ b/nib/default.nix @@ -28,7 +28,7 @@ in in { inherit pkgsFor; forAllSystems = f: - std.genAttrs systems ( + std.attrs.genAttrs systems ( system: f system (pkgsFor system) ); }; @@ -40,7 +40,7 @@ in in { inherit pkgsFor upkgsFor; forAllSystems = f: - std.genAttrs systems ( + std.attrs.genAttrs systems ( system: f system (pkgsFor system) (upkgsFor system) ); };