flake: remove with statement

This commit is contained in:
Jeremy Baxter 2024-03-19 10:18:25 +13:00
parent 38d243fc40
commit a1e01cf3c3

View file

@ -6,10 +6,10 @@
};
outputs = { self, nixpkgs }:
with nixpkgs.lib;
let
plats = nixpkgs.lib.platforms.unix;
forAllSystems = fn:
genAttrs platforms.unix (system:
nixpkgs.lib.genAttrs plats (system:
fn (import nixpkgs {
inherit system;
})