1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-09-16 13:44:42 -04:00

Cleanup arch-chroot step

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-06-06 13:02:51 -07:00 committed by GitHub
parent f4655b87cf
commit ce689900a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -505,41 +505,36 @@ fi
## Configuring the system. ## Configuring the system.
arch-chroot /mnt /bin/bash -e <<EOF arch-chroot /mnt /bin/bash -e <<EOF
# Setting up timezone. # Setting up timezone
# Temporarily hardcoding here # Temporarily hardcoding here
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
# Setting up clock. # Setting up clock
hwclock --systohc hwclock --systohc
# Generating locales.my keys aren't even on # Generating locales
echo 'Generating locales.'
locale-gen locale-gen
# Create SecureBoot keys. This isn't strictly necessary, but certain things like linux-hardened preset expects it and mkinitcpio will fail without it, sooo... # Create SecureBoot keys
# This isn't strictly necessary, but linux-hardened preset expects it and mkinitcpio will fail without it.
sbctl create-keys sbctl create-keys
# Generating a new initramfs. # Generating a new initramfs
echo 'Creating a new initramfs.'
chmod 600 /boot/initramfs-linux* chmod 600 /boot/initramfs-linux*
mkinitcpio -P mkinitcpio -P
# Installing GRUB. # Installing GRUB
echo "Installing GRUB on /boot."
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=GRUB --disable-shim-lock grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=GRUB --disable-shim-lock
# Creating grub config file. # Creating grub config file
echo "Creating GRUB config file."
grub-mkconfig -o /boot/grub/grub.cfg grub-mkconfig -o /boot/grub/grub.cfg
# Adding user with sudo privilege # Adding user with sudo privilege
echo 'Adding $username with root privilege.'
useradd -m $username useradd -m $username
usermod -aG wheel $username usermod -aG wheel $username
if [ "${install_mode}" = 'desktop' ]; then if [ "${install_mode}" = 'desktop' ]; then
# Setting up dconf # Setting up dconf
echo 'Setting up dconf.'
dconf update dconf update
fi fi
@ -548,7 +543,6 @@ arch-chroot /mnt /bin/bash -e <<EOF
ln -s /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf ln -s /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
# Snapper configuration # Snapper configuration
echo 'Configuring Snapper.'
umount /.snapshots umount /.snapshots
rm -r /.snapshots rm -r /.snapshots
snapper --no-dbus -c root create-config / snapper --no-dbus -c root create-config /
@ -599,4 +593,4 @@ sed -i 's/umask 022/umask 077/g' /mnt/etc/bash.bashrc
# Finish up # Finish up
echo "Done, you may now wish to reboot (further changes can be done by chrooting into /mnt)." echo "Done, you may now wish to reboot (further changes can be done by chrooting into /mnt)."
exit exit