21 lines
701 B
Plaintext
21 lines
701 B
Plaintext
module start "basesystem" "Configure Basesystem"
|
|
|
|
while input "hostname?" "void"; do
|
|
if check alnum "${output}"; then
|
|
setconf add hostname "${output}"
|
|
break
|
|
fi
|
|
done
|
|
|
|
setconf add "lang" "de_DE"
|
|
setconf add "lang_console" "de-latin1-nodeadkeys"
|
|
setconf add "timezone" "Europe/Berlin"
|
|
|
|
|
|
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
|
|
servicesenable acpid cronie socklog-unix nanoklogd uuidd agetty-tty1 agetty-tty2 agetty-tty3 agetty-tty4
|
|
servicesdisable agetty-tty6 agetty-tty5
|
|
|
|
module end
|