Use common script for Arch installation

This commit is contained in:
Manuel Thalmann 2024-09-12 21:44:14 +02:00
parent 1535d994df
commit af3d96d393
2 changed files with 4 additions and 4 deletions

View file

@ -2,10 +2,6 @@
begin
set -l dir (status dirname)
function getInstallerScript -V dir -S
echo "$dir/install.fish"
end
CONFIG_NAME="DerGeret" \
ARCH_HOSTNAME="der-geret" \
USER_DISPLAYNAME="Manuel Thalmann" \

View file

@ -14,6 +14,10 @@ begin
pacstrap -K "$mountDir" fish jq nix tmux
end
function getInstallerScript -V dir -S
echo "$dir/install.fish"
end
function setupOS -S -V dir -V mountDir
source "$dir/../../Common/Scripts/wait-network.fish"
source "$dir/../../Common/Scripts/hooks.fish"