1
Fork 0
nixos-system-config/install.sh

198 lines
5.9 KiB
Bash
Raw Normal View History

2025-01-11 02:00:28 +01:00
#!/usr/bin/env sh
# Author: caem - https://caem.dev
# install.sh - Installation script for my NixOS configuration
#
# This script aims to automate the deployment of my configuration
# on a new machine.
2025-01-12 02:57:46 +01:00
args_ensure_extra_arg() {
if [ -z "$2" ] || [ "$(echo "$2" | cut -c 1-1)" = "-" ]; then
>&2 echo "Argument '$1' requires an extra argument. Run --help for more info."
exit 1
fi
}
args_ensure_is_set() {
if [ -z "$2" ]; then
>&2 echo "Argument '$1' is required to be set. Please consult the README or run again with --help."
2025-01-12 03:44:23 +01:00
exit 1
2025-01-12 02:57:46 +01:00
fi
}
args() {
while [ -n "$1" ]; do
case "$1" in
"-h" | "--help")
echo ""
echo "$0 - Installation script for my NixOS configuration"
echo ""
echo "arguments:"
echo " -h|--help Print this and exit"
echo " -d|--device [device] (required) The device you want to install NixOS on to"
echo " -o|--host [hostname] (required) The host from ./hosts you want to install"
2025-01-15 00:27:29 +01:00
echo " -b|--build Build the system without installing"
2025-01-12 02:57:46 +01:00
echo ""
echo "origin: https://github.com/c4em/dotnix"
echo ""
exit 0
;;
"-d" | "--device")
args_ensure_extra_arg "$@"
if [ ! -b "$2" ]; then
>&2 echo "'$2' is not a valid block device. Make sure you selected the right drive"
exit 1
fi
DOTNIX_INSTALL_DEVICE="$2"
shift 2
;;
"-o" | "--host")
args_ensure_extra_arg "$@"
2025-01-12 03:44:23 +01:00
if [ ! -d "./hosts/$2" ]; then
2025-01-12 02:57:46 +01:00
>&2 echo "Invalid hostname '$2'. Make sure it exists in ./hosts"
exit 1
fi
DOTNIX_HOSTNAME="$2"
shift 2
;;
2025-01-15 00:27:29 +01:00
"-b" | "--build")
DOTNIX_DO_ONLY_BUILD=1
shift 1
;;
2025-01-12 02:57:46 +01:00
*)
>&2 echo "Unrecognized argument '$1'. Run with --help to view accepted arguments."
exit 1
;;
esac
done
args_ensure_is_set "--host" "$DOTNIX_HOSTNAME"
2025-01-15 00:27:29 +01:00
if [ -z "$DOTNIX_DO_ONLY_BUILD" ]; then
args_ensure_is_set "--device" "$DOTNIX_INSTALL_DEVICE"
fi
2025-01-12 02:57:46 +01:00
}
2025-01-14 00:16:41 +01:00
sed_safe () {
# I got this off of some random StackOverflow answer. Don't put too much trust in this.
printf "%s" "$1" | sed -r 's/([\$\.\*\/\[\\^])/\\\1/g' | sed 's/[]]/\[]]/g'
}
2025-01-15 00:27:29 +01:00
update_managed_values() {
sed -i 's/\( *device = \)".*"\(; #.*\)/\1"'"$(sed_safe "$DOTNIX_INSTALL_DEVICE")"'"\2/' "./hosts/$DOTNIX_HOSTNAME/default.nix"
sed -i 's/\( *device = \)".*"\(; #.*\)/\1"'"$(sed_safe "$DOTNIX_INSTALL_DEVICE")"'"\2/' "./hosts/$DOTNIX_HOSTNAME/disko.nix"
sed -i 's/\( *system.stateVersion = \)".*"\(; #.*\)/\1"'"$(sed_safe "$(nixos-version | cut -f1,2 -d '.')")"'"\2/' "./hosts/$DOTNIX_HOSTNAME/default.nix"
}
build() {
nix build ".#nixosConfigurations.${DOTNIX_HOSTNAME}.config.system.build.toplevel"
}
permissions() {
if [ "$(id -u)" = "0" ]; then
sudo () {
true
}
else
sudo -v
2025-01-14 00:16:41 +01:00
fi
2025-01-15 00:27:29 +01:00
}
2025-01-14 00:16:41 +01:00
2025-01-15 00:27:29 +01:00
ensure_confirmation() {
printf "\e[1;31m=== ARE YOU SURE YOU WANT TO CONTINUE WITH THE INSTALLATION ===\e[0m\n\n"
printf "This will \e[1;31mIRREVERSIBLY\e[0m wipe all data in '%s'\n" "$DOTNIX_INSTALL_DEVICE"
printf "This disk contains following partitions:\n\n"
lsblk -o NAME,SIZE,TYPE,FSTYPE "$DOTNIX_INSTALL_DEVICE"
printf "\n"
lsblk -no NAME "$DOTNIX_INSTALL_DEVICE" | tail -n +2 | tr -cd '[:alnum:][:space:]' | xargs -I {} -- df -h "/dev/{}"
printf "\n"
printf "Please write 'Yes, do as I say!' to continue with the installation\n> "
read -r install_prompt
if [ "$install_prompt" != "Yes, do as I say!" ]; then
echo "Cancelling installation"
exit 0
else
DOTNIX_CONFIRM_DISK_NUKE="yes"
fi
2025-01-14 00:16:41 +01:00
}
2025-01-15 00:27:29 +01:00
partition_disk() {
if [ "$DOTNIX_CONFIRM_DISK_NUKE" = "yes" ]; then
2025-01-16 19:31:59 +01:00
sudo nix --experimental-features 'flakes nix-command' run github:nix-community/disko/latest -- \
--mode destroy,format,mount --yes-wipe-all-disks "./hosts/$DOTNIX_HOSTNAME/disko.nix"
2025-01-15 00:27:29 +01:00
else
>&2 echo "Aborted installation due to invalid state in the partitioning step."
exit 1
fi
}
2025-01-16 20:14:24 +01:00
install() {
2025-01-19 23:57:50 +01:00
sudo sh -c '\
2025-01-19 23:58:38 +01:00
eval "$(ssh-agent -s)";\
ssh-add "/root/.ssh/*.pub";\
nixos-install --no-root-passwd --flake ".#$DOTNIX_HOSTNAME";\
2025-01-19 23:57:50 +01:00
'
2025-01-16 20:14:24 +01:00
}
2025-01-17 00:11:23 +01:00
copy_files_to_new_install() {
2025-01-19 19:50:30 +01:00
username="$(grep user ./flake.nix | sed -e 's/.*user = "\(.*\)";.*/\1/')"
2025-01-19 03:05:43 +01:00
if [ -z "$username" ]; then
>&2 echo "Cannot determine username"
exit 1
fi
sudo cp -vr . /mnt/nix/config
sudo mkdir -p "/mnt/nix/persist/home/$username/programming"
sudo ln -svf /nix/config "/mnt/nix/persist/home/$username/programming/dotnix"
sudo chown -R 1000:100 "/mnt/nix/persist/home/$username"
sudo chown -R 1000:100 "/mnt/nix/config"
2025-01-17 00:11:23 +01:00
}
2025-01-16 20:14:24 +01:00
reboot_on_consent() {
2025-01-17 00:11:23 +01:00
printf "\n\nInstallation finished. Would you like to reboot?\n[y/n] > "
2025-01-16 20:14:24 +01:00
read -r do_reboot
if [ "$do_reboot" = "y" ] || [ "$do_reboot" = "Y" ]; then
sudo reboot
fi
}
2025-01-17 00:11:23 +01:00
ensure_shell() {
if [ -z "$IN_NIX_SHELL" ]; then
echo "Restarting script in nix-shell environment."
exec nix-shell shell.nix --run "bash $0 $*"
fi
}
2025-01-12 02:57:46 +01:00
main () {
2025-01-17 00:11:23 +01:00
ensure_shell "$@"
2025-01-12 02:57:46 +01:00
args "$@"
2025-01-15 00:27:29 +01:00
permissions
2025-01-12 03:44:23 +01:00
2025-01-15 00:27:29 +01:00
if [ -n "$DOTNIX_DO_ONLY_BUILD" ]; then
if [ -n "$DOTNIX_INSTALL_DEVICE" ]; then
update_managed_values
fi
2025-01-14 00:16:41 +01:00
2025-01-15 00:27:29 +01:00
build
exit 0
2025-01-14 00:16:41 +01:00
fi
2025-01-15 00:27:29 +01:00
ensure_confirmation
2025-01-14 00:16:41 +01:00
update_managed_values
2025-01-15 00:27:29 +01:00
partition_disk
2025-01-17 00:11:23 +01:00
copy_files_to_new_install
2025-01-19 03:05:43 +01:00
install
2025-01-16 20:15:27 +01:00
reboot_on_consent
2025-01-12 02:57:46 +01:00
}
set -e
main "$@"