diff --git a/roles/home-gui/tasks/flatpak.yml b/roles/home-gui/tasks/flatpak.yml index 8f2d1f5..2bf682e 100644 --- a/roles/home-gui/tasks/flatpak.yml +++ b/roles/home-gui/tasks/flatpak.yml @@ -26,11 +26,25 @@ method: user when: flatpak.stat.exists == true -- name: Install flatpak packages +- name: Install Firefox flatpak + community.general.flatpak: + name: + - org.mozilla.firefox + state: present + method: user + when: flatpak.stat.exists == true + +- name: Install KeePassXC flatpak community.general.flatpak: name: - org.keepassxc.KeePassXC - - org.mozilla.firefox + state: present + method: user + when: flatpak.stat.exists == true + +- name: Install VLC flatpak + community.general.flatpak: + name: - org.videolan.VLC state: present method: user