-
Notifications
You must be signed in to change notification settings - Fork 0
/
kalis.conf
54 lines (45 loc) · 2.03 KB
/
kalis.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Kustom Arch Linux Install Script (Kalis) configuration file
# Device where the system will be installed. Run the `lsblk` command to get
# a list of all the available devices in your system. Remark: This is NOT a
# partition, but the drive itself.
INSTALL_DEVICE="/dev/nvme0n1"
PARTITION_BOOT="${INSTALL_DEVICE}p1"
PARTITION_SWAP="${INSTALL_DEVICE}p2"
PARTITION_ROOT="${INSTALL_DEVICE}p3"
# Mount point for the boot partition. Here will be stored the different files
# for the bootloader to load the kernel. Defaults to /efi.
BOOT_DIRECTORY="/efi"
# Boot and swap partitions sizes in mebibytes. The rest of the available space
# in the device will be destinated to the root partition.
BOOT_PARTITION_SIZE="512"
SWAP_PARTITION_SIZE="2048"
# Wireless network configuration. The network interface can be found by
# running the `ip show` command (should be something similar to "wlan0"). The
# network ESSID is just the name of the wireless network.
WIFI_INTERFACE=""
WIFI_ESSID=""
WIFI_KEY=""
# Enabling reflector will increase the overall installation speed by updating
# the mirrorlist containing the servers from which the kernel will be downloaded.
# A list of countries can be specified to only use mirrors from that country.
REFLECTOR="false"
REFLECTOR_COUNTRIES=()
# Timezone. Run `ls /usr/share/zoneinfo` to get a list of all the available
# timezones. Defaults to "Europe/Madrid".
TIMEZONE="Europe/Madrid"
# Locales to be generated during the installation and configuration processes.
LOCALES=("en_GB.UTF-8 UTF-8")
LOCALE_CONF=("LANG=en_GB.UTF-8")
# Console keymap (defaults to "en") and hostname (defaults to "kalis").
KEYMAP="en"
HOSTNAME="kalis"
# Credentials for the root and the newly created user.
ROOT_PASSWORD=""
USER_NAME="$HOSTNAME"
USER_PASSWORD="$ROOT_PASSWORD"
# Automatically reboot after the installation process has finished.
# Disabled by default. Use "true" to enable it.
REBOOT_AFTER_INSTALL="false"
# URL to a dotfiles bootstrap script. If left empty, no dotfiles will be
# setup after the system installation.
DOTFILES_BOOTSTRAP_SCRIPT=""