From 7d0f90da66985b402c6a25eb3eca8cc9e6060ced Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 24 Jan 2026 18:52:34 -0600 Subject: fix(testing): remove obsolete --skip-slow-packages option This flag was removed from archsetup but remained in test scripts. --- archsetup.conf.example | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 archsetup.conf.example (limited to 'archsetup.conf.example') diff --git a/archsetup.conf.example b/archsetup.conf.example new file mode 100644 index 0000000..0fff4d8 --- /dev/null +++ b/archsetup.conf.example @@ -0,0 +1,54 @@ +# archsetup.conf - Configuration for unattended installation +# +# Copy this file and edit values for your setup: +# cp archsetup.conf.example archsetup.conf +# +# Then run: +# ./archsetup --config-file archsetup.conf +# +# All fields have defaults - only specify what you want to change. + +############################# +# User Configuration +############################# + +# Username for the primary user account (default: cjennings) +USERNAME=cjennings + +# Initial password - CHANGE ON FIRST LOGIN (default: welcome) +PASSWORD=welcome + +############################# +# System Options +############################# + +# Automatic console login after disk decryption (default: prompt on encrypted systems) +# Options: yes, no +# Only relevant for systems with encrypted root (LUKS or ZFS native encryption) +#AUTOLOGIN=yes + +# Skip GPU driver auto-detection and installation (default: no) +# Set to "yes" if you want to handle GPU drivers manually +#NO_GPU_DRIVERS=no + +# System locale (default: prompt if not already configured) +# Common options: en_US.UTF-8, en_GB.UTF-8, de_DE.UTF-8, es_ES.UTF-8, +# fr_FR.UTF-8, pt_BR.UTF-8, ja_JP.UTF-8, zh_CN.UTF-8 +#LOCALE=en_US.UTF-8 + +# Desktop environment (default: dwm) +# Options: dwm (Xorg + DWM), hyprland (Wayland + Hyprland), none (headless/server) +#DESKTOP_ENV=dwm + +############################# +# Git Repositories +############################# +# Override these to use your own forks of suckless tools and dotfiles. +# Defaults point to git.cjennings.net - fork these for your own setup. + +#DWM_REPO=https://github.com/yourusername/dwm.git +#DMENU_REPO=https://github.com/yourusername/dmenu.git +#ST_REPO=https://github.com/yourusername/st.git +#SLOCK_REPO=https://github.com/yourusername/slock.git +#DOTEMACS_REPO=https://github.com/yourusername/dotemacs.git +#ARCHSETUP_REPO=https://github.com/yourusername/archsetup.git -- cgit v1.2.3