2024-05-03 07:56:30 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -ouex pipefail
|
|
|
|
|
|
|
|
RELEASE="$(rpm -E %fedora)"
|
|
|
|
|
2024-05-03 15:11:18 +00:00
|
|
|
### Add repos
|
2024-05-03 07:56:30 +00:00
|
|
|
|
2024-05-03 15:11:18 +00:00
|
|
|
# Add Staging repo
|
|
|
|
curl -Lo /etc/yum.repos.d/ublue-os-staging-fedora-"${FEDORA_MAJOR_VERSION}".repo https://copr.fedorainfracloud.org/coprs/ublue-os/staging/repo/fedora-"${FEDORA_MAJOR_VERSION}"/ublue-os-staging-fedora-"${FEDORA_MAJOR_VERSION}".repo
|
|
|
|
|
|
|
|
# Add Bling repo
|
|
|
|
curl -Lo /etc/yum.repos.d/ublue-os-bling-fedora-"${FEDORA_MAJOR_VERSION}".repo https://copr.fedorainfracloud.org/coprs/ublue-os/bling/repo/fedora-"${FEDORA_MAJOR_VERSION}"/ublue-os-bling-fedora-"${FEDORA_MAJOR_VERSION}".repo
|
|
|
|
|
|
|
|
curl -Lo /etc/yum.repos.d/ganto-lxc4-fedora-"${FEDORA_MAJOR_VERSION}".repo https://copr.fedorainfracloud.org/coprs/ganto/lxc4/repo/fedora-"${FEDORA_MAJOR_VERSION}"/ganto-lxc4-fedora-"${FEDORA_MAJOR_VERSION}".repo
|
2024-05-03 07:56:30 +00:00
|
|
|
|
2024-05-03 15:11:18 +00:00
|
|
|
curl -Lo /etc/yum.repos.d/_copr_che-nerd-fonts-"${FEDORA_MAJOR_VERSION}".repo https://copr.fedorainfracloud.org/coprs/che/nerd-fonts/repo/fedora-"${FEDORA_MAJOR_VERSION}"/che-nerd-fonts-fedora-"${FEDORA_MAJOR_VERSION}".repo
|
|
|
|
|
|
|
|
### Install packages
|
2024-05-03 07:56:30 +00:00
|
|
|
|
2024-05-03 15:11:18 +00:00
|
|
|
grep -v '^#' /tmp/packages | xargs rpm-ostree install
|
2024-05-03 07:56:30 +00:00
|
|
|
|
|
|
|
# this would install a package from rpmfusion
|
|
|
|
# rpm-ostree install vlc
|
|
|
|
|
2024-05-03 15:11:18 +00:00
|
|
|
#### Services
|
2024-05-03 07:56:30 +00:00
|
|
|
|
|
|
|
systemctl enable podman.socket
|
2024-05-03 15:11:18 +00:00
|
|
|
systemctl enable tailscaled.service
|