wip: broken, still working on it'

This commit is contained in:
2025-10-31 17:07:59 -04:00
parent 8fd3ca8c9a
commit 717e8c452d
14 changed files with 113 additions and 38 deletions

12
home/krew.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, lib, ... }:
with pkgs;
let
plugins = writeText "plugins" ''
krew
oidc-login
'';
in {
home.activation.krew = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
$DRY_RUN_CMD ${krewfile}/bin/krewfile -command ${krew}/bin/krew -file ${plugins}
'';
}