59 lines
1.5 KiB
Bash
59 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
# Copyright 2026 Logan Fick
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# defaults.conf - Default configuration values for the Arch Linux Installer
|
|
#
|
|
# Central configuration file for paths, URLs, and base packages.
|
|
|
|
# Installer identification
|
|
INSTALLER_NAME="LogalDeveloper's Arch Linux Installer"
|
|
|
|
# Network configuration
|
|
INTERNET_CHECK_URL="https://logal.dev/"
|
|
MIRROR_URL='https://mirrors.logal.dev/archlinux/$repo/os/$arch'
|
|
|
|
# Paths
|
|
CA_CERTS_DIR="${SCRIPT_DIR}/files/certs"
|
|
CONFIG_SRC_DIR="${SCRIPT_DIR}/files/etc"
|
|
HOME_SKEL_DIR="${SCRIPT_DIR}/files/home-skel"
|
|
HOME_SKEL_DESKTOP_DIR="${SCRIPT_DIR}/files/home-skel-desktop"
|
|
MOUNT_POINT="/mnt"
|
|
|
|
# Base packages to install with pacstrap
|
|
BASE_PACKAGES=(
|
|
base
|
|
linux
|
|
linux-firmware
|
|
bash-completion
|
|
btrfs-progs
|
|
arch-install-scripts
|
|
smartmontools
|
|
lm_sensors
|
|
man-db
|
|
btop
|
|
htop
|
|
nano
|
|
less
|
|
tmux
|
|
rsync
|
|
sudo
|
|
iptables-nft
|
|
openssh
|
|
usbguard
|
|
7zip
|
|
fwupd
|
|
)
|