Skip to content

Commit 0b2de19

Browse files
committed
docs: update the ci badge
1 parent b8a94d3 commit 0b2de19

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# install-nix-action
22

3-
![GitHub Actions badge](https://github.com/cachix/install-nix-action/workflows/install-nix-action%20test/badge.svg)
3+
[![Tests](https://github.com/cachix/install-nix-action/actions/workflows/test.yml/badge.svg)](https://github.com/cachix/install-nix-action/actions/workflows/test.yml)
44

55
Installs [Nix](https://nixos.org/nix/) on GitHub Actions runners for Linux and macOS.
66

@@ -58,15 +58,14 @@ jobs:
5858
5959
| Name | Description | Default |
6060
|------|-------------|---------|
61-
| `install_url` | URL to install Nix from. Useful for testing non-stable releases or pinning a specific Nix version (e.g., https://releases.nixos.org/nix/nix-2.3.7/install) | `""` |
61+
| `install_url` | URL to install Nix from. Useful for testing non-stable releases or pinning a specific Nix version (e.g., <https://releases.nixos.org/nix/nix-2.3.7/install>) | `""` |
6262
| `install_options` | Additional flags to pass to the Nix installer script | `""` |
6363
| `extra_nix_config` | Additional configuration to append to `/etc/nix/nix.conf` | `""` |
6464
| `nix_path` | Value to set for the `NIX_PATH` environment variable (e.g., `nixpkgs=channel:nixos-unstable`) | `""` |
6565
| `github_access_token` | GitHub token for Nix to use when pulling from GitHub repositories. Helps work around rate limit issues. Has no effect when `access-tokens` is specified in `extra_nix_config`. | `$GITHUB_TOKEN` if available |
6666
| `set_as_trusted_user` | Add the current user to the `trusted-users` list | `true` |
6767
| `enable_kvm` | Enable KVM for hardware-accelerated virtualization on Linux | `true` |
6868

69-
7069
## Differences from the default Nix installer
7170

7271
Some settings have been optimised for use in CI environments:
@@ -196,8 +195,9 @@ nix develop --impure
196195
In multi-user mode, Nix commands that operate on the Nix store are forwarded to a privileged daemon. This daemon runs in a separate context from your GitHub Actions workflow and cannot access the workflow's environment variables. Consequently, any secrets or credentials defined in your workflow environment will not be available to Nix operations that require store access.
197196

198197
There are two ways to pass AWS credentials to the Nix daemon:
199-
- Configure a default profile using the AWS CLI
200-
- Install Nix in single-user mode
198+
199+
- Configure a default profile using the AWS CLI
200+
- Install Nix in single-user mode
201201

202202
#### Configure a default profile using the AWS CLI
203203

0 commit comments

Comments
 (0)