mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
fix: pass system as args to wrappers
This commit is contained in:
parent
62f9200c84
commit
3fc769d61e
2 changed files with 7 additions and 6 deletions
|
|
@ -12,7 +12,7 @@
|
||||||
checks = set.map (_: deployLib: deployLib.deployChecks inputs.self.deploy) inputs.deploy-rs.lib;
|
checks = set.map (_: deployLib: deployLib.deployChecks inputs.self.deploy) inputs.deploy-rs.lib;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
inherit inputs tree std pkgs formatter lib checks;
|
inherit inputs tree std pkgs formatter lib checks wrappers;
|
||||||
legacyPackages = pkgs;
|
legacyPackages = pkgs;
|
||||||
packages = pkgs // wrappers;
|
packages = pkgs // wrappers;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
}@args: let
|
}@args:
|
||||||
in
|
inputs.utils.lib.eachDefaultSystem (system: let
|
||||||
inputs.utils.lib.eachDefaultSystem (system: {
|
newArgs = args // { inherit system; };
|
||||||
nf-actions-test = import ./nf-actions-test.nix args;
|
in {
|
||||||
nf-generate = import ./nf-generate.nix args;
|
nf-actions-test = import ./nf-actions-test.nix newArgs;
|
||||||
|
nf-generate = import ./nf-generate.nix newArgs;
|
||||||
})
|
})
|
||||||
Loading…
Add table
Add a link
Reference in a new issue