diff --git a/outputs.nix b/outputs.nix index bde5cd5e..886da5bc 100644 --- a/outputs.nix +++ b/outputs.nix @@ -12,7 +12,7 @@ checks = set.map (_: deployLib: deployLib.deployChecks inputs.self.deploy) inputs.deploy-rs.lib; in { - inherit inputs tree std pkgs formatter lib checks; + inherit inputs tree std pkgs formatter lib checks wrappers; legacyPackages = pkgs; packages = pkgs // wrappers; } diff --git a/wrappers/default.nix b/wrappers/default.nix index d2088ae2..e5ec55bd 100644 --- a/wrappers/default.nix +++ b/wrappers/default.nix @@ -1,9 +1,10 @@ { inputs, ... -}@args: let -in - inputs.utils.lib.eachDefaultSystem (system: { - nf-actions-test = import ./nf-actions-test.nix args; - nf-generate = import ./nf-generate.nix args; +}@args: + inputs.utils.lib.eachDefaultSystem (system: let + newArgs = args // { inherit system; }; + in { + nf-actions-test = import ./nf-actions-test.nix newArgs; + nf-generate = import ./nf-generate.nix newArgs; }) \ No newline at end of file