diff options
| author | Freya Murphy <freya@freyacat.org> | 2024-12-10 21:15:14 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2024-12-10 21:15:14 -0500 |
| commit | 48edfadc673cf44e29a8d8d9d52d9338898102df (patch) | |
| tree | 685bb2887fb0f10a845c3b1f2d0e7e937bfd22b8 /installer/guix-setup | |
| parent | add certbot to cuirass (diff) | |
| download | dotfiles-guix-48edfadc673cf44e29a8d8d9d52d9338898102df.tar.gz dotfiles-guix-48edfadc673cf44e29a8d8d9d52d9338898102df.tar.bz2 dotfiles-guix-48edfadc673cf44e29a8d8d9d52d9338898102df.zip | |
rewrite guix installer
Diffstat (limited to 'installer/guix-setup')
| -rwxr-xr-x | installer/guix-setup | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/installer/guix-setup b/installer/guix-setup deleted file mode 100755 index 7fb027b..0000000 --- a/installer/guix-setup +++ /dev/null @@ -1,43 +0,0 @@ -#!/run/current-system/profile/bin/bash - -echo "#!/run/current-system/profile/bin/bash" > ./guix-env -echo "" > ./guix-env - -welcome() { - cat<<"EOF" - ░░░ ░░░ - ░░▒▒░░░░░░░░░ ░░░░░░░░░▒▒░░ - ░░▒▒▒▒▒░░░░░░░ ░░░░░░░▒▒▒▒▒░ - ░▒▒▒░░▒▒▒▒▒ ░░░░░░░▒▒░ - ░▒▒▒▒░ ░░░░░░ - ▒▒▒▒▒ ░░░░░░ - ▒▒▒▒▒ ░░░░░ - ░▒▒▒▒▒ ░░░░░ - ▒▒▒▒▒ ░░░░░ - ▒▒▒▒▒ ░░░░░ - ░▒▒▒▒▒░░░░░ - ▒▒▒▒▒▒░░░ - ▒▒▒▒▒▒░ - ____ _ _ _____ __ ____ _ - / ___| | | |_ _\ \/ / / ___|| |_ _ __ __ _ _ __ - | | _| | | || | \ / \___ \| __| '__/ _` | '_ \ - | |_| | |_| || | / \ ___) | |_| | | (_| | |_) | - \____|\___/|___/_/\_\ |____/ \__|_| \__,_| .__/ - |_| -This script installs GNU Guix on your system - -https://www.gnu.org/software/guix/ -EOF - echo -n "Press return to continue..." - read -r ANSWER -} - -welcome -./guix-partition -./guix-crypt -./guix-configure -./guix-install -./guix-password - -echo "GNU Guix has been installed, you can now reboot..." -exit 0 |