Run setup of der-geret using fish

This commit is contained in:
Manuel Thalmann 2024-07-28 12:45:05 +02:00
parent c88c6b434c
commit a0f74c7776
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,4 @@
#!/bin/env fish
begin
bash "$(status dirname)/install.sh"
end

View file

@ -0,0 +1,13 @@
#!/bin/env fish
begin
set -l dir (status dirname)
function getInstallerScript -V dir -S
echo "$dir/install.fish"
end
CONFIG_MODULE="$dir/config.nix" \
ARCH_HOSTNAME="der-geret" \
USER_DISPLAYNAME="Manuel Thalmann" \
source "$(status dirname)/../../../scripts/Arch/OS/setup.fish"
end