12 lines
298 B
Bash
Executable file
12 lines
298 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Add addtional RPM repos
|
|
cd /etc/yum.repos.d || exit 1
|
|
sudo wget https://pkgs.tailscale.com/stable/fedora/tailscale.repo
|
|
|
|
# Add flatpak repos
|
|
sudo flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo
|
|
|
|
rpm-ostree install \
|
|
distrobox \
|
|
tailscale
|