2024-07-13 07:52:30 +00:00
|
|
|
#!/bin/env fish
|
2024-07-16 13:22:15 +00:00
|
|
|
function runSetup
|
2024-07-13 07:52:30 +00:00
|
|
|
set -l dir (status dirname)
|
|
|
|
source "$dir/../Scripts/config.fish"
|
|
|
|
source "$dir/../Scripts/hooks.fish"
|
|
|
|
set -l name (getConfig valhalla.setupUser.name)
|
|
|
|
set -l mountDir (getConfig valhalla.partition.rootDir)
|
2024-07-13 08:59:09 +00:00
|
|
|
set -l projectRoot (realpath "$dir/../../..")
|
|
|
|
set -l projectName (basename "$projectRoot")
|
|
|
|
set -l PROJECT_CLONE_ROOT "/opt/$(basename "$projectName")"
|
2024-07-13 09:23:14 +00:00
|
|
|
set -l script (mktemp)
|
2024-07-13 08:59:09 +00:00
|
|
|
|
2024-07-16 20:10:42 +00:00
|
|
|
if not type -q runChroot
|
|
|
|
function runChroot -S
|
|
|
|
command chroot $argv
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2024-07-13 10:36:10 +00:00
|
|
|
function getCloneFile -S -a path
|
|
|
|
set -l relativeDir (realpath --relative-to "$projectRoot" "$dir")
|
|
|
|
set -l relativePath (realpath --relative-to "$dir" "$path")
|
|
|
|
echo "$PROJECT_CLONE_ROOT/$relativeDir/$relativePath"
|
|
|
|
end
|
|
|
|
|
2024-07-16 14:13:34 +00:00
|
|
|
function runInOS -S
|
|
|
|
set -l script "/root/run_once"
|
|
|
|
wrapScript $argv | chroot "$mountDir" tee "$script"
|
2024-07-16 20:10:42 +00:00
|
|
|
runChroot "$mountDir" chmod +x "$script"
|
|
|
|
runChroot "$mountDir" "$script"
|
|
|
|
runChroot "$mountDir" rm "$script"
|
2024-07-16 14:13:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
function wrapScript -S
|
|
|
|
printf %s\n \
|
|
|
|
"cd $PROJECT_CLONE_ROOT" \
|
|
|
|
"export CONFIG_MODULE=$(string escape (getCloneFile "$CONFIG_MODULE"))" \
|
|
|
|
"$argv"
|
|
|
|
end
|
|
|
|
|
2024-07-13 09:23:14 +00:00
|
|
|
getConfig valhalla.partition.script > "$script"
|
|
|
|
bash "$script"
|
2024-07-13 08:59:09 +00:00
|
|
|
and source "$dir/../../copy-repo.fish" "$mountDir$PROJECT_CLONE_ROOT"
|
|
|
|
and runHook setupOS || true
|
2024-07-13 07:52:30 +00:00
|
|
|
and runHook autologin || true
|
2024-07-13 10:36:10 +00:00
|
|
|
|
2024-07-13 13:12:35 +00:00
|
|
|
# Copy `nixpkgs` channel
|
|
|
|
and begin
|
|
|
|
set -l channelDir /nix/var/nix/profiles/per-user/root/channels/nixpkgs
|
|
|
|
mkdir -p (dirname "$mountDir/$channelDir")
|
|
|
|
cp -r "$channelDir" "$mountDir/$channelDir"
|
|
|
|
end
|
|
|
|
|
2024-07-13 10:36:10 +00:00
|
|
|
and begin
|
2024-07-13 11:23:16 +00:00
|
|
|
set -l script (string escape (getCloneFile (getInstallerScript)))
|
2024-07-16 14:13:34 +00:00
|
|
|
wrapScript "INSTALLER_SCRIPT=$(string escape "$script") $script"
|
2024-07-16 20:10:42 +00:00
|
|
|
end | runChroot "$mountDir" tee /root/.bash_profile > /dev/null
|
2024-07-13 10:36:10 +00:00
|
|
|
|
2024-07-13 07:52:30 +00:00
|
|
|
and echo "Setup finished!"
|
2024-07-15 23:05:06 +00:00
|
|
|
and echo "This machine will reboot in 5 seconds..."
|
|
|
|
and echo "Press CTRL-C to abort..."
|
|
|
|
and sleep 5
|
|
|
|
and systemctl reboot
|
2024-07-13 07:52:30 +00:00
|
|
|
end
|