46 lines
763 B
Bash
46 lines
763 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
|
|
userpasswd=ange
|
|
rootpasswd=root
|
|
|
|
shell=zsh
|
|
|
|
hostname="$username-pc"
|
|
|
|
tz=Europe/Paris
|
|
locales=en_US # e.g. 'en_US,fr_FR'
|
|
lang=en_US
|
|
|
|
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
|