krops: don't reimport pkgs

Previously, the krops pkg was accessed by evaluating nixpkgs with the
krops overlay.
Now directly call krops with an existing pkgs instance.
This commit is contained in:
Erik Arvstedt
2022-07-04 10:16:46 +02:00
parent 285a38803c
commit 68ef662654
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ let self = {
# Internal pkgs
netns-exec = pkgs.callPackage ./netns-exec { };
krops = import ./krops { };
krops = import ./krops { inherit pkgs; };
# Deprecated pkgs
generate-secrets = import ./generate-secrets-deprecated.nix;