Merge branch 'revert-122765f9' into 'main'

Revert "Update install.sh"

See merge request ahoneybun/nyxi-installer!9
This commit is contained in:
Aaron Honeycutt 2022-06-05 21:58:51 +00:00
commit bda7ed2fe6

View file

@ -80,12 +80,17 @@ sudo cryptsetup config $rootName --label luks
sudo mkswap /dev/lvm/swap # swap partition
sudo mkfs.btrfs -L root /dev/lvm/root # /root partition
# 0. Mount the filesystems.
sudo swapon /dev/lvm/swap
sudo mount /dev/lvm/root /mnt
# Create Subvolumes
sudo btrfs subvolume create /mnt/@
sudo btrfs subvolume create /mnt/@home
# Unmount root
sudo umount /mnt
# Mount the subvolumes.
sudo mount -o noatime,commit=120,compress=zstd:10,subvol=@ /dev/lvm/root /mnt