Add Arch scripts for the computer

This commit is contained in:
Manuel Thalmann 2023-06-20 22:06:19 +02:00
parent 6204eb9ecb
commit 20b575a1de
2 changed files with 24 additions and 0 deletions

View file

@ -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;

10
profiles/DerGeret/Arch/setup.sh Executable file
View file

@ -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;