arch-install/roles/05_packages/tasks/flatpak.yml
Ariejan de Vroom 8eeb3e77a6
All checks were successful
Lint / Lint (3.11) (push) Successful in 1m50s
Lint / Lint (3.10) (push) Successful in 1m57s
Fix linting stuff
2024-06-07 09:04:58 +02:00

16 lines
358 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
become_user: "{{ user.name }}"