Files
ansible/archive/flatpak/tasks/main.yml
2024-07-22 12:10:55 -07:00

15 lines
346 B
YAML
Executable File

---
- 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 }}"