diff options
author | EuAndreh <eu@euandre.org> | 2019-06-01 21:02:20 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-06-01 21:02:20 -0300 |
commit | eabe67dcbfa17d2571d41d275c8f4aed6ed4831b (patch) | |
tree | cc4e27d9cc2789512df0b5c50c5aa6e45c80b483 /scripts | |
parent | Duplicate Nix files from /etc/nixos/* to /mnt/etc/nixos/ (diff) | |
download | dotfiles-eabe67dcbfa17d2571d41d275c8f4aed6ed4831b.tar.gz dotfiles-eabe67dcbfa17d2571d41d275c8f4aed6ed4831b.tar.xz |
Move scripts/burn-nixos.sh -> public/nixos/burn.sh
Diffstat (limited to 'scripts')
-rw-r--r--[-rwxr-xr-x] | scripts/burn-nixos.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/burn-nixos.sh b/scripts/burn-nixos.sh index b88ba79..85ce6cd 100755..100644 --- a/scripts/burn-nixos.sh +++ b/scripts/burn-nixos.sh @@ -5,7 +5,7 @@ usage() { red "Missing argument $1.\n" cat <<EOF Usage: - burn-nixos.sh <NIXOS_URL> <USB_STICK> + burn.sh <NIXOS_URL> <USB_STICK> Arguments: NIXOS_URL Download URL for NixOS ISO to be installed. Can be found at https://nixos.org/nixos/download.html @@ -14,7 +14,7 @@ Usage: Examples: Download NixOS 19.03 x86_64 minimal and burn it into stick on /dev/sdb: NIXOS_URL='https://releases.nixos.org/nixos/19.03/nixos-19.03.172764.50d5d73e22b/nixos-minimal-19.03.172764.50d5d73e22b-x86_64-linux.iso' - burn-nixos.sh "\$NIXOS_URL" /dev/sdb + burn.sh "\$NIXOS_URL" /dev/sdb EOF } |