arch-install/roles/05_packages/tasks/flatpak.yml

16 lines
358 B
YAML
Raw Normal View History

2024-06-06 20:49:14 +00:00
---
- 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
2024-06-06 21:07:22 +00:00
remote: flathub
become: true
2024-06-07 07:04:58 +00:00
become_user: "{{ user.name }}"