Files
nix-config-v2/home/krew.nix
Wyatt J. Miller f8da56fe52 working build
fixed up krew home module
2025-12-12 15:52:04 -05:00

15 lines
291 B
Nix

{ pkgs, lib, ... }:
with pkgs;
let
plugins = [
"krew"
"oidc-login"
];
in {
home.activation.krew = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
${lib.concatMapStringsSep "\n" (plugin: ''
$DRY_RUN_CMD ${krew}/bin/krew install ${plugin} || true
'') plugins}
'';
}