improving fedora stuff

This commit is contained in:
2024-07-22 13:46:16 -07:00
parent c58d299d18
commit 1f4a06c883
2 changed files with 25 additions and 9 deletions

View File

@@ -1,15 +1,20 @@
--- ---
- name: Workstation setup - name: Fedora workstation setup
hosts: workstation hosts: workstation
roles: roles:
- role: fedora_pkg
tags: fedora_pkg_tag
- role: fedora_base
tags: fedora_base_tag
- role: fedora_firewall - role: fedora_firewall
tags: fedora_firewall_tag tags: fedora_firewall
- role: fedora_selinux - role: fedora_selinux
tags: fedora_selinux_tag tags: fedora_selinux
- role: fedora_auditd
tags: fedora_auditd
- role: fedora_base
tags: fedora_base
- role: fedora_pkg
tags: fedora_pkg

View File

@@ -34,4 +34,15 @@
state: present state: present
loop: "{{ doom_dep_packages }}" loop: "{{ doom_dep_packages }}"
- name: Add Flathub repository
flatpak_remote:
name: flathub
state: present
url: https://flathub.org/repo/flathub.flatpakrepo
- name: Install Flatpak packages
flatpak:
name: "{{ item }}"
state: present
loop: "{{ flatpak_packages }}"