mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-27 00:53:09 +01:00
91 lines
2.7 KiB
Bash
Executable File
91 lines
2.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -n "$(cat /etc/os-release | grep -i nixos)" ]; then
|
|
echo "This is NixOS."
|
|
echo "Continuing with the ZaneyOS installation."
|
|
echo "-----"
|
|
else
|
|
echo "This is not NixOS or the distribution information is not available."
|
|
exit
|
|
fi
|
|
|
|
echo "Installing Git & Vim"
|
|
nix-shell -p git vim
|
|
|
|
echo "-----"
|
|
|
|
cd
|
|
echo "Cloning & Entering ZaneyOS Repository"
|
|
git clone https://gitlab.com/zaney/zaneyos.git
|
|
cd zaneyos
|
|
|
|
read -p "Use ZaneyOS Stable Branch? (yYyes) [yes]: " stableBranch
|
|
stableBranch=${stableBranch:-yes} # Set default value to "yes" if user_input is empty
|
|
|
|
# Check user's response
|
|
if [ "$stableBranch" == "yes" ]; then
|
|
echo "Switching To Stable Branch"
|
|
git switch stable-1.0
|
|
elif [ "$stableBranch" == "y" ]; then
|
|
echo "Switching To Stable Branch"
|
|
git switch stable-1.0
|
|
elif [ "$stableBranch" == "Y" ]; then
|
|
echo "Switching To Stable Branch"
|
|
git switch stable-1.0
|
|
else
|
|
echo "Staying On Main, The Unstable Branch"
|
|
fi
|
|
|
|
read -p "Enter Your New Username: " userName
|
|
sed -i "/^\s*username[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$userName\"/" ./options.nix
|
|
|
|
echo "The password for the new user, $userName, is password"
|
|
sleep 2
|
|
|
|
echo "-----"
|
|
|
|
read -p "Enter Your New Hostname: " hostName
|
|
sed -i "/^\s*hostname[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$hostName\"/" ./options.nix
|
|
|
|
echo "-----"
|
|
|
|
read -p "Enter Your New Git Username [Can Be Full Name]: " gitUserName
|
|
sed -i "/^\s*gitUsername[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$gitUserName\"/" ./options.nix
|
|
|
|
echo "-----"
|
|
|
|
read -p "Enter Your New Git Email: " gitEmail
|
|
sed -i "/^\s*gitEmail[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$gitEmail\"/" ./options.nix
|
|
|
|
echo "-----"
|
|
|
|
read -p "Enter Your Locale, Example> en_US.UTF-8 : " locale
|
|
sed -i "/^\s*theLocale[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$locale\"/" ./options.nix
|
|
|
|
echo "-----"
|
|
|
|
read -p "Enter Your Keyboard Layout, Example> us : " kbdLayout
|
|
sed -i "/^\s*theKBDLayout[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$kbdLayout\"/" ./options.nix
|
|
|
|
echo "-----"
|
|
|
|
read -p "Enter Your Timezone, Example> America/New_York : " timezone
|
|
sed -i "/^\s*theTimezone[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$timezone\"/" ./options.nix
|
|
|
|
echo "-----"
|
|
|
|
echo "Valid options include amd, intel, and vm"
|
|
read -p "Enter Your CPU Type : " cpuType
|
|
sed -i "/^\s*cpuType[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$cpuType\"/" ./options.nix
|
|
|
|
echo "-----"
|
|
|
|
echo "Valid options include amd, intel, nvidia, vm, intel-nvidia"
|
|
read -p "Enter Your GPU Type : " gpuType
|
|
sed -i "/^\s*gpuType[[:space:]]*=[[:space:]]*\"/s/\"\(.*\)\"/\"$gpuType\"/" ./options.nix
|
|
|
|
nixos-generate-config --show-hardware-config > hardware.nix
|
|
|
|
NIX_CONFIG="experimental-features = nix-command flakes"
|
|
sudo nixos-rebuild switch --flake .#$hostName
|