Skip to content
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
1 change: 1 addition & 0 deletions modules/common/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
scc # code counter with complexity calculations and COCOMO estimates
fzf # fuzzy finder
graphviz # graph visualization software
plantuml # plantuml diagram generator
tex-fmt # latex formatter
devcontainer # devcontainer cli

Expand Down
1 change: 1 addition & 0 deletions modules/darwin/homebrew.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ let

# Security
"nordpass"
"nordvpn"

# Productivity
"todoist-app"
Expand Down
42 changes: 42 additions & 0 deletions users/gkhaykin/awscli.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{ ... }: {
programs.zsh = {
initContent = ''
# >>> AWS
export AWS_SDK_LOAD_CONFIG=1
# <<< AWS
'';
};
programs.awscli = {
enable = true;
settings = {
default = {
region = "us-west-2";
output = "json";
};
"sso-session together" = {
sso_start_url = "https://together-aws-portal.awsapps.com/start";
sso_region = "us-west-2";
};
"profile together-prod" = {
sso_session = "together";
sso_account_id = "598726163780";
sso_role_name = "PowerUserAccess";
};
"profile together-qa" = {
sso_session = "together";
sso_account_id = "905418226616";
sso_role_name = "PowerUserAccess";
};
"profile together-research" = {
sso_session = "together";
sso_account_id = "805380815601";
sso_role_name = "PowerUserAccess";
};
"profile together-dev" = {
sso_session = "together";
sso_account_id = "997151384078";
sso_role_name = "PowerUserAccess";
};
};
};
}
2 changes: 2 additions & 0 deletions users/gkhaykin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

../shared/completions.nix
../shared/fonts.nix

./awscli.nix
];

home = {
Expand Down
2 changes: 1 addition & 1 deletion users/shared/scripts/asdf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ plugins=(
"kube-linter 0.7.2" # k8s linter
"kustomize 5.6.0" # k8s manifest generator
"tilt 0.33.22" # k8s developer experience
"argocd 2.10.1" # k8s gitops
"argocd 3.1.8" # k8s gitops
"awscli 2.23.3" # aws cli
"nodejs 23.6.1" # javascript runtime
"pnpm 9.15.5" # javascript package manager
Expand Down