bugfixes, install instructions

This commit is contained in:
SArpnt 2023-12-29 16:10:42 -05:00
parent 28c8cfdb64
commit eadde0057e
Signed by: SArpnt
SSH Key Fingerprint: SHA256:wyRI40FXp6te9QA9r2OFJf+DtCZQmqZFNTj7EV6aMDA
2 changed files with 23 additions and 2 deletions

View File

@ -1,5 +1,26 @@
# 🐎 arch
## installing
note that this whole thing is still a hacky mess that could break at any time,
use at your own risk
1. get and boot an endeavouros live cd (archiso would probably work if you fiddle with it but endeavouros is easier)
2. create and mount your partitions at /mnt, and swapon your swap devices
you need at least a root partition and if using uefi, an efi partition at /mnt/boot
i reccomend a 512mb efi partition, a btrfs root partition, and a 16gb-24gb swap partition
4. run these commands
```
sudo
pacman -Sy fish
curl "https://git.disroot.org/ficial/horse-arch/archive/main.tar.gz" --output horse-arch.tar.gz
gzip -d horse-arch.tar.gz
tar xf horse-arch.tar
cd horse-arch
fish main.fish
```
3. follow instructions
## developing
everything in overlay.tar is placed onto the system before using `pacstrap`,

View File

@ -174,9 +174,9 @@ useradd -m -G games,realtime,wheel -c $nickname $user
passwd $user
begin
set -l paru (mktemp -d)
runuser $user --session-command "git clone "https://aur.archlinux.org/paru-bin.git" $paru"
set -l paru (runuser $user --session-command "mktemp -d")
pushd $paru
runuser $user --session-command "git clone 'https://aur.archlinux.org/paru-bin.git' ."
runuser $user --session-command "makepkg -sir --noconfirm"
popd
rm -rf $paru