mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-23 17:10:53 +00:00
3d81dbf023
Actual command: `nix-shell --packages nodePackages.prettier --pure --run 'prettier --write .'`.
34 lines
1.2 KiB
YAML
34 lines
1.2 KiB
YAML
name: "Install Nix"
|
|
description: "Installs Nix on GitHub Actions for the supported platforms: Linux and macOS."
|
|
author: "Domen Kožar"
|
|
inputs:
|
|
extra_nix_config:
|
|
description: "Gets appended to `/etc/nix/nix.conf` if passed."
|
|
github_access_token:
|
|
description: "Configure nix to pull from github using the given github token."
|
|
install_url:
|
|
description: "Installation URL that will contain a script to install Nix."
|
|
install_options:
|
|
description: "Additional installer flags passed to the installer script."
|
|
nix_path:
|
|
description: "Set NIX_PATH environment variable."
|
|
enable_kvm:
|
|
description: "Enable KVM for hardware-accelerated virtualization on Linux, if available."
|
|
required: false
|
|
default: true
|
|
branding:
|
|
color: "blue"
|
|
icon: "sun"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: ${GITHUB_ACTION_PATH}/install-nix.sh
|
|
shell: bash
|
|
env:
|
|
INPUT_EXTRA_NIX_CONFIG: ${{ inputs.extra_nix_config }}
|
|
INPUT_GITHUB_ACCESS_TOKEN: ${{ inputs.github_access_token }}
|
|
INPUT_INSTALL_OPTIONS: ${{ inputs.install_options }}
|
|
INPUT_INSTALL_URL: ${{ inputs.install_url }}
|
|
INPUT_NIX_PATH: ${{ inputs.nix_path }}
|
|
INPUT_ENABLE_KVM: ${{ inputs.enable_kvm }}
|
|
GITHUB_TOKEN: ${{ github.token }}
|