feat: aws config

This commit is contained in:
Barrett Ruth 2026-02-09 22:32:41 -05:00
parent 7370ee0a23
commit 29dc9d8897
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
2 changed files with 48 additions and 1 deletions

View file

@ -90,6 +90,15 @@ in
++ lib.optionals go [ "${config.xdg.dataHome}/go/bin" ]
++ lib.optionals node [ "${config.xdg.dataHome}/pnpm" ];
xdg.configFile."aws/config" = lib.mkIf aws {
text = ''
[default]
[profile barrett]
region = us-east-2
output = json
'';
};
xdg.configFile."npm/npmrc" = lib.mkIf node {
text = ''
prefix=''${XDG_DATA_HOME}/npm