Moved arch to its own subdirectory

This commit is contained in:
Tibo De Peuter 2023-03-12 19:55:04 +01:00
parent 7cefa8efec
commit f47802351e
70 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,14 @@
post_install() {
>&2 echo "Enabling NetworkManager"
systemctl enable --now NetworkManager.service
>&2 echo "Disabling Bluetooth"
systemctl disable --now bluetooth.service
>&2 echo "Disabling terminal bell"
echo "blacklist pcspkr" > /etc/modprobe.d/blacklist.conf
>&2 echo "Fixing locale"
sed -i "s/^#\(en_GB.UTF-8 UTF-8\)$/\1/g" "/etc/locale.gen"
locale-gen
}