fix: std undefined

This commit is contained in:
Emile Clark-Boman 2025-12-14 12:50:54 +10:00
parent ba2c835557
commit 55cf16a317

View file

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