-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.conf
35 lines (31 loc) · 1.26 KB
/
install.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
# USERS
SYSUSER="systux"
VIRTUSER="virt"
HOMEUSER="leo"
GUESTUSER="guest"
# NETWORK
## https://www.rfc-editor.org/rfc/rfc1178.html
## Network devices: elements
## Servers: colors
## Clients: flowers
HOSTNAME="tulip"
## https://www.rfc-editor.org/rfc/rfc8375.html
DOMAIN="home.arpa"
# REGION
KEYMAP="de-latin1"
KEYLAYOUT="de"
MIRRORCOUNTRIES="NL,DE,DK,FR"
LANGUAGES=("de_DE.UTF-8 UTF-8" "en_US.UTF-8 UTF-8" "en_DK.UTF-8 UTF-8" "fr_FR.UTF-8 UTF-8" "nl_NL.UTF-8 UTF-8")
TIMEZONE="Europe/Amsterdam"
# DISK
# Customize disk allocation
# Strings are sorted by their time of execution.
# x%FREE means x% of what is left after allocating the previous volume.
# / /usr /var /home
DISK_ALLOCATION=("5%FREE" "5%FREE" "40%FREE" "100%FREE")
# Example allocation for small disks
#DISK_ALLOCATION=("15%FREE" "40%FREE" "50%FREE" "100%FREE")
# SUBVOLUMES and matching CONFIG name
# Only subvolumes (except /) in /var /usr /home are allowed
SUBVOLUMES=("/" "/usr/" "/var/" "/var/lib/" "/var/lib/containers/" "/var/lib/flatpak/" "/var/lib/libvirt/" "/var/lib/mysql/" "/var/cache/" "/var/games/" "/var/log/" "/home/")
CONFIGS=("root" "usr" "var" "var_lib" "var_lib_containers" "var_lib_flatpak" "var_lib_libvirt" "var_lib_mysql" "var_cache" "var_games" "var_log" "home")