48 lines
762 B
Bash
48 lines
762 B
Bash
# User Variables
|
|
# Comment to disable
|
|
# shellcheck disable=SC2034
|
|
|
|
install_type=dwm # base|desktop|dwm
|
|
|
|
disk=/dev/nvme0n1
|
|
disk_passwd=cryptroot
|
|
|
|
swapfile=1024 # MiB
|
|
|
|
username=ange
|
|
user_passwd=ange
|
|
root_passwd=root
|
|
|
|
shell=zsh
|
|
|
|
hostname="$username-pc"
|
|
|
|
tz=Europe/Paris
|
|
locales=(
|
|
en_US
|
|
)
|
|
lang="${locales[0]}"
|
|
|
|
pkg=(
|
|
base-devel man-{db,pages} tldr
|
|
efibootmgr
|
|
fastfetch
|
|
git
|
|
dosfstools exfatprogs
|
|
iwd iptables-nft wireguard-tools bind gnu-netcat
|
|
jq
|
|
lf
|
|
neovim{,-lspconfig} python-{pynvim,black} ripgrep bash-language-server pyright
|
|
opendoas
|
|
openssh
|
|
p7zip unrar
|
|
podman docker-compose aardvark-dns
|
|
reflector
|
|
renameutils perl-rename
|
|
rsync
|
|
terminus-font awesome-terminal-fonts
|
|
fzf
|
|
)
|
|
|
|
# vim: ft=sh
|