nixfiles/home/profiles/shell/starship.nix

12 lines
269 B
Nix

{pkgs, ...}: {
programs.starship = {
enable = true;
enableZshIntegration = true;
settings = {
"custom.kubeprompt" = {
command = ''${pkgs.kubeprompt}/bin/kubeprompt -f default'';
when = ''test "$KUBECONFIG" '';
};
};
};
}