diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/default.nix | 4 | ||||
-rw-r--r-- | tests/infrastructure/default.nix | 10 |
2 files changed, 12 insertions, 2 deletions
diff --git a/tests/default.nix b/tests/default.nix index c36a5906..af004feb 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -6,6 +6,8 @@ nixpkgs_as_input, sysLib, extraModules, + nixpkgs_open_prs, + system, }: let mkTest = import ./infrastructure { inherit @@ -15,6 +17,8 @@ myPkgs extraModules sysLib + nixpkgs_open_prs + system ; }; diff --git a/tests/infrastructure/default.nix b/tests/infrastructure/default.nix index e0ad6889..9e6ab08c 100644 --- a/tests/infrastructure/default.nix +++ b/tests/infrastructure/default.nix @@ -5,7 +5,8 @@ nixos-lib, extraModules, sysLib, - ... + nixpkgs_open_prs, + system, }: { name, configuration, @@ -22,7 +23,12 @@ nixos-lib.runTest { node = { specialArgs = { - inherit myPkgs sysLib; + inherit + myPkgs + sysLib + nixpkgs_open_prs + system + ; }; # Use the nixpkgs as constructed by the `nixpkgs.*` options pkgs = null; |