27 lines
734 B
YAML
27 lines
734 B
YAML
- name: Install Flatpak Applications Configuration to {{ ansible_hostname }}
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: true
|
|
|
|
tasks:
|
|
- name: Install Flatpak Applications
|
|
community.general.flatpak:
|
|
remote: "flathub"
|
|
state: "present"
|
|
name:
|
|
- im.dino.Dino
|
|
- org.gajim.Gajim
|
|
- org.keepassxc.KeePassXC
|
|
- com.github.PintaProject.Pinta
|
|
- org.qownnotes.QOwnNotes
|
|
- org.localsend.localsend_app
|
|
- org.gnome.World.PikaBackup
|
|
- dev.geopjr.Tuba
|
|
- in.cinny.Cinny
|
|
- chat.schildi.desktop
|
|
- com.makemkv.MakeMKV
|
|
- com.jgraph.drawio.desktop
|
|
- io.github.flattool.Warehouse
|
|
|
|
|