Compare commits

..

3 Commits

Author SHA1 Message Date
c011672bc2 Install packages from package lists in transform script
The pre-flight summary already computed missing packages but never
installed them. Now installs both official and AUR packages after
moonarch-git.
2026-03-30 23:03:58 +02:00
9dde069e3e Replace timeshift with snapper + snap-pac for btrfs snapshots
snap-pac provides automatic pre/post snapshots on pacman transactions
via pacman hook.
2026-03-30 22:59:46 +02:00
f5d199fa5a Fix foot terminal font: use monospace variant of UbuntuSans NF 2026-03-30 22:56:33 +02:00
4 changed files with 14 additions and 3 deletions

View File

@ -10,7 +10,7 @@
# title=foot
# locked-title=no
font=UbuntuSans Nerd Font:size=11
font=UbuntuSansMono Nerd Font:size=11
# font-bold=<bold variant of regular font>
# font-italic=<italic variant of regular font>
# font-bold-italic=<bold+italic variant of regular font>

View File

@ -35,4 +35,3 @@ waterfox-bin
# System & Tools
auto-cpufreq
stasis
timeshift-autosnap

View File

@ -103,5 +103,6 @@ docker
docker-compose
fwupd
plocate
timeshift
snapper
snap-pac
ufw

View File

@ -225,6 +225,17 @@ paru -Sy --pkgbuilds --noconfirm
log "Installing moonarch-git package..."
paru -S --needed --noconfirm moonarch-git
# Install packages from package lists
if [[ -n "$MISSING_OFFICIAL" ]]; then
log "Installing official packages..."
echo "$MISSING_OFFICIAL" | paru -S --needed --noconfirm -
fi
if [[ -n "$MISSING_AUR" ]]; then
log "Installing AUR packages..."
echo "$MISSING_AUR" | paru -S --needed --noconfirm -
fi
# ============================================================
# Phase 7: User-Level Configuration
# ============================================================