diff options
Diffstat (limited to '')
-rwxr-xr-x | installer/guix-setup | 43 | ||||
-rwxr-xr-x | installer/guix-setup-user | 21 |
2 files changed, 0 insertions, 64 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 diff --git a/installer/guix-setup-user b/installer/guix-setup-user deleted file mode 100755 index 5933116..0000000 --- a/installer/guix-setup-user +++ /dev/null @@ -1,21 +0,0 @@ -#!/run/current-system/profile/bin/bash - -# This should run on user first logon, so let's a go! -# First, we should run a guix pull - -guix pull - -hash guix - -guix home -L ~/.config/guix/modules reconfigure ~/.config/guix/home-config/home-configuration.scm - -sudo -E herd restart nix-daemon - -nix-channel --update - -nix-shell '<home-manager>' -A install - -rm ~/.zprofile -source ~/.config/zsh/.zprofile - -home-manager switch |