Compare commits

...

2 Commits

Author SHA1 Message Date
aa1567487f Add OpenMoji emoji font to AUR package list 2026-03-31 12:49:59 +02:00
5b37bfe525 Pin linux-zen kernel in archinstall config, add quiet boot param
- Set kernels to linux-zen in user_configuration.json to skip
  interactive kernel selection during install
- Add post-install step to append quiet to non-fallback systemd-boot
  entries for clean boot output
2026-03-31 11:17:36 +02:00
3 changed files with 15 additions and 0 deletions

View File

@ -8,6 +8,8 @@
"bootloader": "Systemd-boot",
"kernels": ["linux-zen"],
"hostname": "moonarch",
"locale_config": {

View File

@ -7,6 +7,9 @@
# Theming
colloid-catppuccin-theme-git
# Fonts
otf-openmoji
# Niri / Wayland Extras
elephant-desktopapplications-bin
elephant-clipboard-bin

View File

@ -154,6 +154,16 @@ sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw --force enable
# --- Boot parameters: add quiet to systemd-boot entries ---
log "Configuring boot parameters..."
for entry in /boot/loader/entries/*.conf; do
if [[ -f "$entry" ]] && [[ "$(basename "$entry")" != *fallback* ]] && ! grep -q 'quiet' "$entry"; then
sudo sed -i '/^options/ s/$/ quiet/' "$entry"
log " + $(basename "$entry") — quiet added"
fi
done
# --- Docker-Gruppe ---
if ! groups | grep -q docker; then