about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2018-12-13 13:05:25 +0100
committerGitHub <noreply@github.com>2018-12-13 13:05:25 +0100
commit7a577741583006c2781fba1036a54766af9ff2e3 (patch)
treea91e743a5bbf8cc593eeaac4ae409509cc77c658 /nixos
parent5a15ab7b5d6ea6c8b0f71ac9610b0b8880c0912c (diff)
parent1a00b86334cc8bc3ccfbcd73a8e5d1950f0ff0b2 (diff)
downloadnixlib-7a577741583006c2781fba1036a54766af9ff2e3.tar
nixlib-7a577741583006c2781fba1036a54766af9ff2e3.tar.gz
nixlib-7a577741583006c2781fba1036a54766af9ff2e3.tar.bz2
nixlib-7a577741583006c2781fba1036a54766af9ff2e3.tar.lz
nixlib-7a577741583006c2781fba1036a54766af9ff2e3.tar.xz
nixlib-7a577741583006c2781fba1036a54766af9ff2e3.tar.zst
nixlib-7a577741583006c2781fba1036a54766af9ff2e3.zip
Merge pull request #51938 from johanot/nixos-kubernetes-test-fix
nixos/kubernetes: fix import path of default nixpkgs
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/kubernetes/base.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/kubernetes/base.nix b/nixos/tests/kubernetes/base.nix
index b77da3414b34..9d77be131751 100644
--- a/nixos/tests/kubernetes/base.nix
+++ b/nixos/tests/kubernetes/base.nix
@@ -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; };