mirror of
https://git.madhouse-project.org/actions/nix.git
synced 2025-01-19 00:41:32 +01:00
17 lines
415 B
YAML
17 lines
415 B
YAML
|
---
|
||
|
name: install-nix
|
||
|
author: Gergely Nagy
|
||
|
description: "Install the Nix package manager on non-NixOS hosts"
|
||
|
inputs:
|
||
|
install-url:
|
||
|
description: "URL to download the installer from"
|
||
|
required: true
|
||
|
default: "https://nixos.org/nix/install"
|
||
|
runs:
|
||
|
using: "composite"
|
||
|
steps:
|
||
|
- shell: bash
|
||
|
run: $GITHUB_ACTION_PATH/bin/install-nix
|
||
|
env:
|
||
|
INPUT_INSTALL_URL: ${{ inputs.install-url }}
|