summaryrefslogtreecommitdiffstats
path: root/roles/flatpak/tasks/main.yml
blob: e78827e3f2995fcd7d13e899587c3a6adae1c52d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
- name: "Ensure flatpak is installed"
  become: true
  ansible.builtin.package:
    name: "flatpak"
    state: "present"

- name: "Add flathub remote"
  community.general.flatpak_remote:
    name: "flathub"
    state: "present"
    flatpakrepo_url: "https://dl.flathub.org/repo/flathub.flatpakrepo"
    method: "user"