36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
##############
|
|
# Partioning #
|
|
##############
|
|
# Base path to the device that will contain the system.
|
|
DISK_BASE="/dev/sda"
|
|
# Size of the swap partition.
|
|
SWAP_SIZE="8GiB"
|
|
# Base path to partions of the device that will contain the system.
|
|
# On nvme drives this is most likely in the form /dev/nvme0n1p
|
|
# For other drives it is most likely the same as the DISK_BASE
|
|
PARTITION_BASE="/dev/sda"
|
|
|
|
|
|
###################
|
|
# System settings #
|
|
###################
|
|
# General system settings. See arch wiki for possible values of these.
|
|
TIME_ZONE="Europe/Amsterdam"
|
|
LOCALE="en_US.UTF-8"
|
|
HOSTNAME="arch"
|
|
# The vendor of your CPU. This is used to install the correct microcode package.
|
|
CPU_VENDOR="amd"
|
|
# The password to use for the root user.
|
|
ROOT_PASSWORD="root"
|
|
|
|
|
|
###############
|
|
# LDAP Module #
|
|
###############
|
|
# This is an optional module to setup the system to use ldap for user authentication.
|
|
ENABLE_LDAP_MODULE=1
|
|
|
|
LDAP_HOST="ldap.example.com"
|
|
LDAP_SEARCH_BASE="dc=ldap,dc=example,dc=com"
|
|
LDAP_SUDO_SEARCH_BASE="ou=sudoer $LDAP_SEARCH_BASE"
|