diff --git a/profiles/DerGeret/Arch/install.fish b/profiles/DerGeret/Arch/install.fish new file mode 100755 index 00000000..f94a3448 --- /dev/null +++ b/profiles/DerGeret/Arch/install.fish @@ -0,0 +1,4 @@ +#!/bin/env fish +begin + bash "$(status dirname)/install.sh" +end diff --git a/profiles/DerGeret/Arch/setup.fish b/profiles/DerGeret/Arch/setup.fish new file mode 100755 index 00000000..1b77aa66 --- /dev/null +++ b/profiles/DerGeret/Arch/setup.fish @@ -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