From b569c8f221de1dce3e4d547e3020835bb92480e2 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sun, 28 Jul 2024 12:45:05 +0200 Subject: [PATCH] Run setup of `der-geret` using `fish` --- profiles/DerGeret/Arch/install.fish | 4 ++++ profiles/DerGeret/Arch/setup.fish | 13 +++++++++++++ 2 files changed, 17 insertions(+) create mode 100755 profiles/DerGeret/Arch/install.fish create mode 100755 profiles/DerGeret/Arch/setup.fish 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