Add Arch scripts for the computer
This commit is contained in:
parent
f2610de6e0
commit
0291f370b4
2 changed files with 24 additions and 0 deletions
14
profiles/DerGeret/Arch/install.sh
Executable file
14
profiles/DerGeret/Arch/install.sh
Executable 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
10
profiles/DerGeret/Arch/setup.sh
Executable 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;
|
Loading…
Reference in a new issue