From 0291f370b46db1a5aacd5593e1afbef6f864b5a4 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 20 Jun 2023 22:06:19 +0200 Subject: [PATCH] Add Arch scripts for the computer --- profiles/DerGeret/Arch/install.sh | 14 ++++++++++++++ profiles/DerGeret/Arch/setup.sh | 10 ++++++++++ 2 files changed, 24 insertions(+) create mode 100755 profiles/DerGeret/Arch/install.sh create mode 100755 profiles/DerGeret/Arch/setup.sh diff --git a/profiles/DerGeret/Arch/install.sh b/profiles/DerGeret/Arch/install.sh new file mode 100755 index 00000000..f9f7086a --- /dev/null +++ b/profiles/DerGeret/Arch/install.sh @@ -0,0 +1,14 @@ +#!/bin/bash +pushd "${BASH_SOURCE%/*}" > /dev/null; + +. "../../../scripts/Arch/Config/SecureBoot/install.sh"; +. "../../../scripts/Arch/Software/nvidia-dkms/install.sh"; +. "../../../scripts/Arch/Software/sddm/install.sh"; +. "../../../scripts/Arch/Config/ssh-agent/install.sh"; +. "../../../scripts/Arch/Collections/personal.sh"; + +NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" \ +INSTALL_FONTS=0 \ + . "../../../scripts/Common/Config/UserProfile/install.sh"; + +popd > /dev/null; diff --git a/profiles/DerGeret/Arch/setup.sh b/profiles/DerGeret/Arch/setup.sh new file mode 100755 index 00000000..65fd1b08 --- /dev/null +++ b/profiles/DerGeret/Arch/setup.sh @@ -0,0 +1,10 @@ +#!/bin/bash +pushd "${BASH_SOURCE%/*}" > /dev/null; + +ARCH_MOUNT_ROOT="/mnt" \ +ARCH_DISK=nvme0n1 \ +ARCH_HOSTNAME="der-geret" \ +USER_DISPLAYNAME="Manuel Thalmann" \ + . "../../../scripts/Arch/OS/setup.sh"; + +popd > /dev/null;