arch-install/roles/05_packages/tasks/flatpak.yml
Ariejan de Vroom 80912de316
Some checks failed
Lint / Lint (3.10) (push) Failing after 17s
Lint / Lint (3.11) (push) Failing after 20s
Install flatpaks globally
2024-06-09 21:12:34 +02:00

15 lines
325 B
YAML

---
- name: Add Flathub repository
community.general.flatpak_remote:
name: flathub
state: present
flatpakrepo_url: https://flathub.org/repo/flathub.flatpakrepo
become: true
- name: Install flatpaks
community.general.flatpak:
name: "{{ flatpaks }}"
state: present
remote: flathub
become: true