void-bash-installer/modules/40-basesystem/config

21 lines
701 B
Plaintext
Raw Normal View History

2021-03-11 14:04:04 +01:00
module start "basesystem" "Configure Basesystem"
while input "hostname?" "void"; do
if check alnum "${output}"; then
setconf add hostname "${output}"
break
fi
done
2021-03-16 20:47:30 +01:00
2021-03-12 16:28:20 +01:00
setconf add "lang" "de_DE"
setconf add "lang_console" "de-latin1-nodeadkeys"
setconf add "timezone" "Europe/Berlin"
2021-03-11 14:04:04 +01:00
2021-04-14 14:10:53 +02:00
addpkg void-repo-multilib void-repo-multilib-nonfree void-repo-nonfree lvm2 cronie socklog-void ntp xtools wireguard-tools gnupg2 progress pwgen net-tools ncdu nmap mtr iotop hdparm smartmontools htop git neovim btrbk croc grub-btrfs
ignorepkg nvi gnupg
2021-04-07 18:33:49 +02:00
servicesenable acpid cronie socklog-unix nanoklogd uuidd agetty-tty1 agetty-tty2 agetty-tty3 agetty-tty4
2021-03-11 14:04:04 +01:00
servicesdisable agetty-tty6 agetty-tty5
module end