From f8da56fe525cae587d1818be06c6747491a87d1b Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Fri, 12 Dec 2025 15:52:04 -0500 Subject: [PATCH] working build fixed up krew home module --- home/krew.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/krew.nix b/home/krew.nix index c237ec8..8169aa0 100644 --- a/home/krew.nix +++ b/home/krew.nix @@ -8,7 +8,7 @@ let in { home.activation.krew = lib.hm.dag.entryAfter [ "writeBoundary" ] '' ${lib.concatMapStringsSep "\n" (plugin: '' - $DRY_RUN_CMD ${krew}/bin/kubectl-krew install ${plugin} || true + $DRY_RUN_CMD ${krew}/bin/krew install ${plugin} || true '') plugins} ''; }