forked from picodotdev/alis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalis.conf
128 lines (109 loc) · 4.3 KB
/
alis.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
# Arch Linux Install Script (alis)
# Copyright (C) 2019 aramcap (https://github.com/aramcap/alis)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Init config #############################################
KEYS="es"
LOG="true"
DEVICE="/dev/sda"
# Network config ##########################################
#WIFI_INTERFACE=""
#WIFI_ESSID=""
#WIFI_KEY=""
#WIFI_HIDDEN=""
PING_HOSTNAME="mirrors.kernel.org"
# Format disk #############################################
FORMATDISK="false"
## Set PARTITION_ESP if FORMATDISK is false and boot type is EFI
PARTITION_ESP="${DEVICE}1"
## LVM options
LVM="true"
## And set LVM_VOLUME_PHISICAL, LVM_VOLUME_GROUP and
## LVM_VOLUME_LOGICAL if FORMATDISK is false and LVM is true
LVM_VOLUME_PHISICAL="${DEVICE}3"
LVM_VOLUME_GROUP="vg"
LVM_VOLUME_LOGICAL="root"
## Set PARTITION_BOOT and PARTITION_ROOT if FORMATDISK is false
PARTITION_BOOT="${DEVICE}2"
PARTITION_ROOT="/dev/mapper/$LVM_VOLUME_GROUP-$LVM_VOLUME_LOGICAL"
## Encryption options
#PARTITION_ROOT_ENCRYPTION_PASSWORD="root"
#PARTITION_ROOT_ENCRYPTION_PASSWORD_RETYPE="root"
## ext4 btrfs xfs
FILE_SYSTEM_TYPE="ext4"
## Enable SWAP file: 2GiB 4GB 8GiB (not supported in btrfs)
SWAP_SIZE="8GiB"
## If device is SSD DEVICE_TRIM need to set true
DEVICE_TRIM="true"
# Other config ############################################
TIMEZONE="/usr/share/zoneinfo/Europe/Madrid"
LOCALE="es_ES.UTF-8 UTF-8"
LANG="LANG=es_ES.UTF-8"
LANGUAGE="LANGUAGE=es_ES:es"
KEYMAP="es"
#FONT=""
#FONT_MAP=""
HOSTNAME="arch"
ROOT_PASSWORD="toor"
ROOT_PASSWORD_RETYPE="toor"
USER_NAME="user"
USER_PASSWORD="resu"
USER_PASSWORD_RETYPE="resu"
## List separated by space
#ADDITIONAL_USER_NAMES=""
## List separated by space
#ADDITIONAL_USER_PASSWORDS=""
## Uncomment if you run in virtualbox
#VIRTUALBOX="true"
# Kernel and initramfs #####################################
## linux-lts linux-lts-headers linux-hardened linux-hardened-headers linux-zen linux-zen-headers
#KERNELS=""
## gzip(default) bzip2 lzma xz lzop lz4 cat(without compression)
#KERNELS_COMPRESSION="gzip"
#KMS="true"
# Bootloader ##############################################
## grub refind systemd
BOOTLOADER="grub"
## Configs for grub
CMDLINE_LINUX_DEFAULT="quiet"
#CMDLINE_LINUX=""
# Install desktop #########################################
## gnome kde xfce mate cinnamon lxde deepin
DESKTOP_ENVIRONMENT="deepin"
## intel amdgpu ati nvidia nvidia-lts nvidia-390xx nvidia-390xx-lts nvidia-340xx nvidia-340xx-lts nouveau
#DISPLAY_DRIVER="intel"
## true false
#DISPLAY_DRIVER_DDX="true"
## true false
#VULKAN="false"
# true false
#DISPLAY_DRIVER_HARDWARE_ACCELERATION="true"
## intel-media-driver libva-intel-driver
#DISPLAY_DRIVER_HARDWARE_ACCELERATION_INTEL="intel-media-driver libva-intel-driver"
# Install packages ########################################
## INTERNET: firefox chromium apache nginx curl wget filezilla sshfs openssh transmission-gtk transmission-qt amule geary thunderbird empathy kopete polari konversation liferea hugo gnome-boxes
## MEDIA: gthumb gimp imagemagick krita inkscape blender cmus vlc easytag ardour audacity ffmpeg gnome-phone-manager kdeconnect gstreamer gst-plugins-good gst-plugins-bad gst-plugins-ugly bluez bluez-utils
## UTILITIES: fish gnome-initial-setup code eclipse-java intellij-idea-community-edition gradle maven lz4 meld dosfstools ntfs-3g exfat-utils
## DOCS: libreoffice-fresh calligra discount lyx vim calibre
## SECURITY: rsync gnupg keepassxc
## SCIENCE: geogebra octave
## OTHERS: flatpak klavaro tmux zip unzip
## DEVELOPER: jdk-openjdk python dotnet-sdk php rust go virtualbox docker ansible vagrant
PACKAGES_PACMAN="vim curl wget openssh"
## aurman yay
AUR="aurman"
## dropbox wps-office freefilesync gnucash ...
PACKAGES_AUR=""
# Reboot after install ####################################
REBOOT="false"