Minor improvements

This commit is contained in:
seajee
2024-06-18 18:56:54 +02:00
parent 73dcecfbe4
commit 7353b11dc5
2 changed files with 2 additions and 5 deletions

View File

@@ -22,9 +22,9 @@ hwclock --systohc
# Localization # Localization
echo "[INFO] Setting locale to en_US" echo "[INFO] Setting locale to en_US"
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen sed -i -e 's|#en_US.UTF-8 UTF-8|en_US.UTF-8 UTF-8|' /etc/locale.gen
locale-gen &>/dev/null locale-gen &>/dev/null
echo "LANG=en_US.UTF-8" >> /etc/locale.conf echo "LANG=en_US.UTF-8" > /etc/locale.conf
# Network configuration # Network configuration
read -p "Enter a valid hostname (${hostname}): " input read -p "Enter a valid hostname (${hostname}): " input

View File

@@ -11,9 +11,6 @@
platform="bios" platform="bios"
input="" input=""
disk="/dev/sda" disk="/dev/sda"
timezone="Europe/Amsterdam"
hostname="arch"
password=""
echoerr() { cat <<< "$@" 1>&2; } echoerr() { cat <<< "$@" 1>&2; }