From 58e333a23b03543df06832e7ec5e0fb6188b3a8c Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Fri, 26 Sep 2025 11:31:25 +0800 Subject: [PATCH] chore: starship - disable aws & gcp module --- home/base/core/starship.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/home/base/core/starship.nix b/home/base/core/starship.nix index 51a4044e..f310af1f 100644 --- a/home/base/core/starship.nix +++ b/home/base/core/starship.nix @@ -14,15 +14,11 @@ success_symbol = "[➜](bold green)"; error_symbol = "[➜](bold red)"; }; - aws = { - symbol = "☁️ 🅰 "; - }; - gcloud = { - # do not show the account/project's info - # to avoid the leak of sensitive information when sharing the terminal - format = "on [$symbol$active(\($region\))]($style) "; - symbol = "☁️ 🅶 ️"; - }; + # I never rely on the defaults, so this module is useless to me—disabled. + # I prefer adding --project, --region to very gcloud/aws command. + aws.disabled = true; + gcloud.disabled = true; + kubernetes = { symbol = "⛵"; disabled = false;