#!/usr/bin/bash set -eoux pipefail ############################################################################### # Cleanup of Unwanted Packages ############################################################################### echo "Removing Firefox and langpacks..." dnf5 remove -y \ firefox \ firefox-langpacks* \ packagekit \ plasma-discover-packagekit && \ dnf5 clean all|| true ############################################################################### # Services Configuration ############################################################################### echo "Enabling services..." systemctl enable libvirtd.service systemctl enable virtlogd.service systemctl enable podman.socket systemctl enable bluetooth.service systemctl enable plasma-setup.service systemctl enable bootc-fetch-apply-updates.timer