Allow overriding installation URL

This commit is contained in:
Domen Kožar 2020-05-14 13:21:40 +02:00
parent ebed63b0a2
commit afb82faed7
No known key found for this signature in database
GPG key ID: C2FFBCAFD2C24246
2 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,9 @@
name: 'Install Nix'
description: 'Installs Nix on GitHub Actions for the supported platforms: Linux and macOS.'
author: 'Domen Kožar'
inputs:
install_url:
description: 'Installation URL that will contain a script to install Nix'
branding:
color: 'blue'
icon: 'sun'

View file

@ -26,7 +26,7 @@ nixConf
# Needed due to multi-user being too defensive
export ALLOW_PREEXISTING_INSTALLATION=1
sh <(curl -L https://nixos.org/nix/install) --daemon
sh <(curl -L ${INPUT_INSTALL_URL:-https://nixos.org/nix/install}) --daemon
# write nix.conf again as installation overwrites it
nixConf