mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
29 lines
575 B
Nix
29 lines
575 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs = {
|
||
|
awscli = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
default = {
|
||
|
output = "json";
|
||
|
region = "eu-west-3";
|
||
|
};
|
||
|
};
|
||
|
credentials = { iam = { credential_process = "pass show aws"; }; };
|
||
|
};
|
||
|
};
|
||
|
|
||
|
test.stubs.awscli2 = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileExists home-files/.aws/config
|
||
|
assertFileContent home-files/.aws/config \
|
||
|
${./aws-config.conf}
|
||
|
|
||
|
assertFileExists home-files/.aws/credentials
|
||
|
assertFileContent home-files/.aws/credentials \
|
||
|
${./aws-credentials.conf}
|
||
|
'';
|
||
|
}
|