1{ inputs, ... }: 2{ 3 systems = import inputs.systems; 4 5 perSystem = 6 { system, ... }: 7 { 8 _module.args.pkgs = import inputs.nixpkgs { 9 inherit system; 10 }; 11 }; 12}