refactor(install): re-enable installer count down

This commit is contained in:
Price Hiller 2023-10-27 23:17:56 -05:00
parent 79df2e5bb4
commit aa08fb116d
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -166,12 +166,13 @@ main() {
exit 1
fi
read -r -s -n 1 -p "Press any key to begin NixOS installation to '${disk}' for host '${host}'!"
# printf "\nInstalling in "
# for i in {3..1}; do
# printf "%s.." "${i}"
# sleep 1
# done
# printf "\n"
printf "\n"
printf "Installing in "
for i in {3..1}; do
printf "%s.." "${i}"
sleep 1
done
printf "\n"
install "${disk}" "${encrypt_disk}" "${host}"
}