Files
ansible/roles/fedora_gnome_workstation/tasks/main.yml

32 lines
700 B
YAML

---
# tasks file for fedora_gnome_workstation
- name: Ensure GNOME shell extensions are installed
ansible.builtin.dnf:
name:
- gnome-shell-extension-pop-shell
state: present
become: true
- name: Ensure flatpak is installed
ansible.builtin.dnf:
name:
- flatpak
state: present
become: true
- name: Add flathub repository
community.general.flatpak_remote:
name: flathub
state: present
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
become: true
- name: Install flatpak applications from flathub
community.general.flatpak:
name:
- com.mattjakeman.ExtensionManager
state: present
remote: flathub
become: true