1

feat: move aws related stuff under .config

This commit is contained in:
Himadri Bhattacharjee
2024-03-06 21:11:39 +05:30
parent 69c1d0c528
commit d0499f1748

7
hosts/default/aws.nix Normal file
View File

@@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
home.sessionVariables = {
AWS_CONFIG_FILE = "${config.xdg.configHome}/aws/config";
AWS_SHARED_CREDENTIALS_FILE = "${config.xdg.configHome}/aws/credentials";
};
}