14 lines
325 B
Fish
Executable file
14 lines
325 B
Fish
Executable file
#!/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
|