Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update b4d14 laptop #8

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions nix/home-manager/apps/cloud/aws.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{ config, inputs, pkgs, lib, ... }: {
home.packages = with pkgs; [
###################################"
# AWS and other tools used with AWS
###################################"
awscli2 # AWS CLI
kubectl # Kubernetes CLI
kubectx # Kubernetes CLI
k9s # Kubernetes CLI
kubernetes-helm # Helm
argocd # ArgoCD CLI
];
}
5 changes: 3 additions & 2 deletions nix/home-manager/features/term/tools/zsh.nix
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ in
echo "$RESULT ms"
}

test -e "$PRJ_DEVTOOLS/alias.sh" && source "$PRJ_DEVTOOLS/alias.sh"

# function assume_role() {
# ~/ghq/github.com/cynapps/poc-devtools/aws-assume-role.sh $@
# source /tmp/.sso_exported
Expand Down Expand Up @@ -127,6 +125,9 @@ in
bindkey "^F" fzf-cd-widget # [CTRL-F] Goto FZF selected folder
bindkey "^J" fzf-zoxide # [CTRL-J] zoxide autojump ZFS list
bindkey "^G" _navi_widget # [CTRL-G] Show local navi

test -e "~/.araiko.env" && source "~/.araiko.env"
test -e "${prj_devtools}/alias.sh" && source "${prj_devtools}/alias.sh"
'';

shellAliases = with pkgs; {
Expand Down
1 change: 1 addition & 0 deletions users/badele/b4d14.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ in
../../nix/home-manager/features/term/security

# Language
../../nix/home-manager/apps/cloud/aws.nix
../../nix/home-manager/features/language/c.nix
../../nix/home-manager/features/language/go.nix
../../nix/home-manager/features/language/python.nix
Expand Down
Loading