As a new user, most of my friction thus far has involved installing desired software persistently:
- as a user I would like to install a specific web browser in a template so that this web browser is available within any app qube derived from that template
I was delighted when I found a post by @balko that seemed to outline exactly this:
In template
sudo dnf install flatpak
In derived qube(s)
flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak --user install remmina
flatpak --user run org.remmina.Remmina
I can confirm flatpak is installed in the template using which flatpak but within any qube derived from that template which flatpak does not find any flatpak.
How can this be? Shouldn’t any qube derived from my template have the same binaries and $PATH ?