Add more roles and start adding packages
This commit is contained in:
31
roles/fedora_gnome_workstation/tasks/main.yml
Normal file
31
roles/fedora_gnome_workstation/tasks/main.yml
Normal file
@@ -0,0 +1,31 @@
|
||||
---
|
||||
# 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
|
||||
Reference in New Issue
Block a user