lix-install-action/action.yml

115 lines
4.9 KiB
YAML
Raw Normal View History

name: The Determinate Nix Installer
2023-01-13 18:04:16 +00:00
branding:
2023-02-17 18:45:59 +00:00
icon: "box"
color: "purple"
2023-02-24 19:27:26 +00:00
description: "Install Nix with the Determinate Nix Installer. See: https://github.com/DeterminateSystems/nix-installer"
2023-01-13 18:04:16 +00:00
inputs:
2023-02-17 18:45:59 +00:00
backtrace:
description: The setting for `RUST_BACKTRACE` (see https://doc.rust-lang.org/std/backtrace/index.html#environment-variables)
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
extra-args:
description: Extra args to pass to the planner (prefer using structured `with:` arguments unless using a custom planner!)
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
extra-conf:
2023-02-24 19:05:08 +00:00
description: Extra configuration lines for `/etc/nix/nix.conf` (includes `access-tokens` with `secrets.GITHUB_TOKEN` automatically if `github-token` is set)
2023-01-13 18:04:16 +00:00
required: false
flakehub:
description: Automatically log in to your [FlakeHub](https://flakehub.com) account, for accessing private flakes.
required: false
default: false
2023-02-17 18:45:59 +00:00
github-token:
description: A GitHub token for making authenticated requests (which have a higher rate-limit quota than unauthenticated requests)
default: ${{ github.token }}
init:
description: "The init system to configure, requires `planner: linux-multi` (allowing the choice between `none` or `systemd`)"
2023-01-13 18:04:16 +00:00
required: false
kvm:
description: Automatically configure the GitHub Actions Runner for NixOS test supports, if the host supports it.
required: false
default: true
2023-02-17 18:45:59 +00:00
local-root:
2023-07-13 17:23:02 +00:00
description: A local `nix-installer` binary root, overrides any settings which change the `nix-installer` used (binaries should be named `nix-installer-$ARCH-$OS`, eg. `nix-installer-x86_64-linux`)
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
log-directives:
description: A list of Tracing directives, comma separated, `-`s replaced with `_` (eg. `nix_installer=trace`, see https://docs.rs/tracing-subscriber/latest/tracing_subscriber/filter/struct.EnvFilter.html#directives)
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
logger:
description: The logger to use for install (eg. `pretty`, `json`, `full`, `compact`)
2023-01-13 18:04:16 +00:00
required: false
2023-03-16 17:02:22 +00:00
ssl-cert-file:
description: "An SSL cert to use (if any), used for fetching Nix and sets `NIX_SSL_CERT_FILE` for Nix"
required: false
2023-07-11 17:34:16 +00:00
proxy:
2023-03-16 17:02:22 +00:00
description: "The proxy to use (if any), valid proxy bases are `https://$URL`, `http://$URL` and `socks5://$URL`"
required: false
2023-02-17 18:45:59 +00:00
mac-case-sensitive:
description: "Use a case sensitive volume (`planner: macos` only)"
2023-01-13 18:04:16 +00:00
required: false
mac-encrypt:
description: "Force encryption on the volume (`planner: macos` only)"
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
mac-root-disk:
description: "The root disk of the target (`planner: macos` only)"
2023-01-13 18:04:16 +00:00
required: false
mac-volume-label:
description: "The label for the created APFS volume (`planner: macos` only)"
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
modify-profile:
description: Modify the user profile to automatically load nix
2023-01-13 18:04:16 +00:00
required: false
2023-07-12 17:24:35 +00:00
default: true
2023-02-17 18:45:59 +00:00
nix-build-group-id:
description: The Nix build group GID
2023-01-24 16:17:18 +00:00
required: false
2023-02-17 18:45:59 +00:00
nix-build-group-name:
description: The Nix build group name
2023-01-24 16:17:18 +00:00
required: false
2023-02-17 18:45:59 +00:00
nix-build-user-base:
description: The Nix build user base UID (ascending)
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
nix-build-user-count:
description: Number of build users to create
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
nix-build-user-prefix:
description: The Nix build user prefix (user numbers will be postfixed)
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
nix-installer-branch:
description: The branch of `nix-installer` to use (conflicts with `nix-installer-tag`, `nix-installer-revision`, `nix-installer-pr`)
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
nix-installer-pr:
description: The PR of `nix-installer` to use (conflicts with `nix-installer-tag`, `nix-installer-revision`, `nix-installer-branch`)
required: false
nix-installer-revision:
description: The revision of `nix-installer` to use (conflicts with `nix-installer-tag`, `nix-installer-branch`, `nix-installer-pr`)
2023-01-13 18:04:16 +00:00
required: false
nix-installer-tag:
2023-01-24 16:51:23 +00:00
description: The tag of `nix-installer` to use (conflicts with `nix-installer-revision`, `nix-installer-branch`, `nix-installer-pr`)
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
nix-installer-url:
description: A URL pointing to a `nix-installer.sh` script
2023-01-13 18:04:16 +00:00
required: false
2023-02-17 18:45:59 +00:00
nix-package-url:
description: The Nix package URL
2023-01-24 16:51:23 +00:00
required: false
2023-02-17 18:45:59 +00:00
planner:
description: A planner to use
2023-01-13 18:04:16 +00:00
required: false
2023-01-13 20:09:36 +00:00
reinstall:
2023-02-17 18:45:59 +00:00
description: Force a reinstall if an existing installation is detected (consider backing up `/nix/store`)
required: false
2023-07-12 17:24:35 +00:00
default: false
2023-02-17 18:45:59 +00:00
start-daemon:
2023-07-13 17:23:02 +00:00
description: "If the daemon should be started, requires `planner: linux`"
required: false
2023-07-12 17:24:35 +00:00
default: true
diagnostic-endpoint:
description: "Diagnostic endpoint url where the installer sends data to. To disable set this to an empty string."
default: "https://install.determinate.systems/nix/diagnostic"
2023-02-17 18:45:59 +00:00
trust-runner-user:
description: Whether to make the runner user trusted by the Nix daemon
default: "true"
2023-01-13 18:04:16 +00:00
runs:
using: "node20"
2023-07-11 17:34:16 +00:00
main: 'dist/index.js'
2023-10-04 19:31:05 +00:00
post: 'dist/index.js'