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
commit 7a57774158
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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; };