fix incorrect call to genAttrs

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

View file

@ -28,7 +28,7 @@ in
in { in {
inherit pkgsFor; inherit pkgsFor;
forAllSystems = f: forAllSystems = f:
std.genAttrs systems ( std.attrs.genAttrs systems (
system: f system (pkgsFor system) system: f system (pkgsFor system)
); );
}; };
@ -40,7 +40,7 @@ in
in { in {
inherit pkgsFor upkgsFor; inherit pkgsFor upkgsFor;
forAllSystems = f: forAllSystems = f:
std.genAttrs systems ( std.attrs.genAttrs systems (
system: f system (pkgsFor system) (upkgsFor system) system: f system (pkgsFor system) (upkgsFor system)
); );
}; };