patch(nix-store): fix inconsistent aws configs (#145)

* fix: correct a typo

* patch(nix-store): fix inconsistent aws configs

---------

Co-authored-by: kev <31861128+yqlbu@users.noreply.github.com>
This commit is contained in:
kev 2024-04-09 22:37:30 +08:00 committed by GitHub
parent 9afc7fc140
commit b015efb7d2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -73,8 +73,8 @@ for all machines that require access to the Nix binary cache.
Create `~/.aws/credentials` with the following content (replace `<nixbuildersecret>` with Create `~/.aws/credentials` with the following content (replace `<nixbuildersecret>` with
the password generated by the `pwgen` command). the password generated by the `pwgen` command).
```toml ```conf
[default] [nixbuilder]
aws_access_key_id=nixbuilder aws_access_key_id=nixbuilder
aws_secret_access_key=<nixbuildersecret> aws_secret_access_key=<nixbuildersecret>
``` ```

View File

@ -69,8 +69,8 @@ Nix 将直接与 S3 存储桶交互,因此我们都需要给所有需要访问
S3 凭据。创建 `~/.aws/credentials`,内容如下(请注意用前面 `pwgen` 命令生成的密码替换 S3 凭据。创建 `~/.aws/credentials`,内容如下(请注意用前面 `pwgen` 命令生成的密码替换
`<nixbuildersecret>`)。 `<nixbuildersecret>`)。
```toml ```conf
[default] [nixbuilder]
aws_access_key_id=nixbuilder aws_access_key_id=nixbuilder
aws_secret_access_key=<nixbuildersecret> aws_secret_access_key=<nixbuildersecret>
``` ```