diff options
author | ene <ene@sils.li> | 2023-02-20 08:48:00 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-20 10:36:51 +0100 |
commit | 4aa5f378d2e3f6cb570ec85daa17115097a8d371 (patch) | |
tree | a79fddc156ed2a8e8b4dc0684fe9773566f1760e /bootstrap | |
parent | Feat(flake): Reorder hosts (diff) | |
download | nixos-config-4aa5f378d2e3f6cb570ec85daa17115097a8d371.tar.gz nixos-config-4aa5f378d2e3f6cb570ec85daa17115097a8d371.zip |
Feat(bootstrap): Add a script for quick activation
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap/activate/activate.sh | 95 | ||||
-rw-r--r-- | bootstrap/activate/default.nix | 12 | ||||
-rw-r--r-- | bootstrap/install/default.nix (renamed from bootstrap/default.nix) | 4 | ||||
-rwxr-xr-x | bootstrap/install/install.sh (renamed from bootstrap/install.sh) | 0 |
4 files changed, 109 insertions, 2 deletions
diff --git a/bootstrap/activate/activate.sh b/bootstrap/activate/activate.sh new file mode 100755 index 00000000..c3724807 --- /dev/null +++ b/bootstrap/activate/activate.sh @@ -0,0 +1,95 @@ +#! /usr/bin/env dash +# shellcheck disable=SC2086 +# shellcheck source=/dev/null +. %SHELL_LIBRARY_PATH +export LIB_TEMP_DIR_FOR_SCRIPT="$(mktemp -d)" +mne() { + mount --mkdir --options compress-force=zstd:15,subvol="$1" $DISK_ROOT "$2" || dien "Mounting of $1"; +} + + +available_disks="$(mktmp)"; +lsblk -J | jq '.[] | map(.name) | [foreach .[] as $item ({item: null, index: -1}; {$item, index: (.index + 1)})]' > $available_disks; + + +[ "$(jq '.[]' "$available_disks" | wc -l)" -eq 0 ] && die "No disks found" +msg "Select where your system is installed:\n" + +i=9999; # nobody will have so many disks attached + +while ! jq -e --argjson i "$i" '.[$i]' "$available_disks" > /dev/null 2>&1; do + for disk in $(jq -c '.[]' "$available_disks" ); do + printf "%4s) %s \n" "$(echo "$disk" | jq '.index')" "$(echo "$disk" | jq '.item' | tr -d "\"")"; + done + printf "%4s) Exit\n" "q" + readp "Enter a option: " disk + + if [ $disk = "q" ];then + exit 1 + else + i="$disk" + fi + if jq -e --argjson i "$i" 'nth($i)' "$available_disks" > /dev/null 2>&1; then + disk=$(mktmp); + jq -e --argjson i "$i" 'nth($i)' "$available_disks" > "$disk"; + else + warning "No disk selected. Select a disk to continue.\n" + fi +done + +case "$disk" in + "nvme"*) + export DISK_EFI="/dev/${disk}"p1 + export DISK_ROOT="/dev/${disk}"p2 + ;; + "sd"* |"vd"*) + export DISK_EFI="/dev/${disk}"1 + export DISK_ROOT="/dev/${disk}"2 + ;; + *) + die "The disk type: ${disk} is not yet supported!" + ;; +esac + +msg "Mounting..." +# TODO umount -R /mnt +mount -t tmpfs none /mnt +mount --mkdir "$DISK_EFI" /mnt/boot + +mne nix-store /mnt/nix +mne persistent-storage /mnt/srv + +mount --mkdir --options bind /mnt/srv/nixos-config /mnt/etc/nixos + +msg "Finished mounting" +readp "Do you want to continue with nixos-install? [N/y]: " result +case $result in + [Yy]) + msg "Great, select a host-config:" + hosts=$(mktmp); + host=""; + awk -F "." '/nixosConfiguration/{print $2}' "$(tmp 'curl https://git.sils.li/ene/nixos-config/raw/branch/prime/flake.nix 2> /dev/null')" | awk '{print $1}' > $hosts; + + while ! grep "$host" "$hosts" > /dev/null || [ "$(printf "%s" "$host" | wc -c)" -eq 0 ]; do + i=1; + while read -r ho ; do + printf "%4s) %s \n" "$i" "$ho"; + i=$((i+1)); + done < "$hosts" + printf "%4s) Exit\n" "q" + readp "Enter a option: " host + + [ "$host" = "q" ] && exit 1 + host=$(awk -v i="$host" '{if (NR==i) {print $0}}' "$hosts"); + if ! grep "$host" "$hosts" > /dev/null || [ "$(printf "%s" "$host" | wc -c)" -eq 0 ]; then + warning "No host selected. Select a host to continue.\n" + fi + done + nixos-install --flake git+https://git.sils.li/ene/nixos-config#${host} --no-root-passwd + ;; + *) + msg "Sure, do it yourself" + exit 1 + ;; +esac +if [ -d "$LIB_TEMP_DIR_FOR_SCRIPT" ];then rm -r "$LIB_TEMP_DIR_FOR_SCRIPT"; fi diff --git a/bootstrap/activate/default.nix b/bootstrap/activate/default.nix new file mode 100644 index 00000000..2c410f09 --- /dev/null +++ b/bootstrap/activate/default.nix @@ -0,0 +1,12 @@ +# vim: ts=2 +{ + pkgs, + shell-library, + ... +}: let + dependencies = with pkgs; [jq dash]; + name = "activate"; + script = ./activate.sh; + lib = import ../../lib {inherit pkgs shell-library;}; +in + lib.makeShellScriptWithLibrary {inherit dependencies name script;} diff --git a/bootstrap/default.nix b/bootstrap/install/default.nix index 6fab9a2d..68580d41 100644 --- a/bootstrap/default.nix +++ b/bootstrap/install/default.nix @@ -4,9 +4,9 @@ shell-library, ... }: let - dependencies = with pkgs; [jq dash]; + dependencies = with pkgs; [jq dash curl grep]; name = "install"; script = ./install.sh; - lib = import ../lib {inherit pkgs shell-library;}; + lib = import ../../lib {inherit pkgs shell-library;}; in lib.makeShellScriptWithLibrary {inherit dependencies name script;} diff --git a/bootstrap/install.sh b/bootstrap/install/install.sh index 37a5e758..37a5e758 100755 --- a/bootstrap/install.sh +++ b/bootstrap/install/install.sh |