added remaining package groups and flatpak role

This commit is contained in:
2026-06-20 05:34:41 -05:00
parent f8581af668
commit af197aba57
11 changed files with 166 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
---
- name: Install virtualization packages
community.general.pacman:
name:
- qemu-full
- virt-manager
- cloud-image-utils
state: present
- name: Enable libvirtd service
ansible.builtin.service:
name: libvirtd
state: started
enabled: true
- name: Add user to libvirt group
ansible.builtin.user:
name: "{{ ansible_user_id }}"
groups: libvirt
append: true