45 lines
882 B
Bash
45 lines
882 B
Bash
# User Variables
|
|
# shellcheck disable=SC2034
|
|
|
|
install_type=dwm # base|desktop|dwm
|
|
|
|
disk=/dev/nvme0n1
|
|
disk_passwd='cryptroot'
|
|
|
|
swapfile=1024 # MiB, comment to disable
|
|
|
|
username=ange
|
|
userpasswd='ange'
|
|
rootpasswd='root' # comment to disable
|
|
|
|
shell=bash
|
|
|
|
hostname="$username-pc"
|
|
|
|
tz=UTC # Europe/Paris
|
|
locales='en_US' # 'en_US|fr_FR' list separated with pipes
|
|
lang=C
|
|
|
|
pkg=(
|
|
bash-completion
|
|
detox
|
|
dosfstools exfatprogs
|
|
fzf
|
|
gcc make fakeroot man-{db,pages} patch tldr
|
|
git
|
|
inotify-tools
|
|
iproute2 iptables-nft iputils systemd-resolvconf wireguard-tools
|
|
iwd qrencode
|
|
jq
|
|
neovim-lspconfig python-{pynvim,black} ripgrep bash-language-server pyright
|
|
openssh
|
|
podman docker-compose crun
|
|
reflector
|
|
renameutils perl-rename
|
|
systemd-sysvcompat psmisc
|
|
tar rsync 7zip
|
|
terminus-font awesome-terminal-fonts
|
|
which
|
|
)
|
|
|
|
# vim: ft=sh
|