Files
ansible/archive/flatpak/tasks/main.yml
2022-12-17 15:38:25 -08:00

15 lines
346 B
YAML

---
- name: Add Flathub Repository
community.general.flatpak_remote:
name: flathub
state: present
method: user
flatpakrepo_url: https://flathub.org/repo/flathub.flatpakrepo
- name: Install Flatpak Packages
community.general.flatpak:
name: "{{ item }}"
state: present
method: user
loop: "{{ flatpak_packages }}"