Merge pull request #51938 from johanot/nixos-kubernetes-test-fix

nixos/kubernetes: fix import path of default nixpkgs
This commit is contained in:
Sarah Brofeldt
2018-12-13 13:05:25 +01:00
committed by GitHub

View File

@@ -1,6 +1,6 @@
{ system ? builtins.currentSystem,
config ? {},
pkgs ? import ../.. { inherit system config; }
pkgs ? import ../../.. { inherit system config; }
}:
with import ../../lib/testing.nix { inherit system pkgs; };