#!/bin/bash . /first-boot.env . $CONFIG_DIR/elfos.sh run root "disable first boot service" "systemctl disable first_boot.service" echo echo === install tools echo run root "enable NetworkMaanger" "systemctl enable NetworkManager.service" run root "start NetworkMaanger" "systemctl start NetworkManager.service" run root "wait for network" "while [[ 1 ]] ; do ping -c1 1.1.1.1 && break ; done" run root "install base tools" "pacman -Sy --noconfirm \ usbutils dosfstools exfat-utils net-tools bind nmap libfido2 \ base-devel vim neovim curl ncdu btop git flatpak screen" run root "install dev tools" "pacman -S --noconfirm \ ansible python3 gcc make cmake nodejs npm clang \ arm-none-eabi-gcc arm-none-eabi-newlib stow" run root "install gnome" "pacman -S --noconfirm gnome" run root "enable gnome" "systemctl enable gdm.service" run root "install docker" "pacman -S --noconfirm docker" run root "add $USERNAME to docker group" "usermod -aG docker $USERNAME" HOME_IP="$(dig +short home.freenen.nl)" run root "update hosts file" "cat >>/etc/hosts <