From 6aa2188f50bd0656f46ded6ad07741e187cae8c8 Mon Sep 17 00:00:00 2001
From: Marty Oehme <marty.oehme@gmail.com>
Date: Fri, 21 Feb 2025 16:02:11 +0100
Subject: [PATCH] feat(wayland): Add wayland stack

---
 play.yaml         |  3 +++
 void_wayland.yaml | 36 ++++++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)
 create mode 100644 void_wayland.yaml

diff --git a/play.yaml b/play.yaml
index ddde4b3..291d72b 100644
--- a/play.yaml
+++ b/play.yaml
@@ -18,6 +18,9 @@
 - name: Import chroot void network tasks
   ansible.builtin.import_playbook: void_network.yaml
 
+- name: Import chroot void wayland tasks
+  ansible.builtin.import_playbook: void_wayland.yaml
+
 - name: Import chroot user management tasks
   ansible.builtin.import_playbook: void_user.yaml
 
diff --git a/void_wayland.yaml b/void_wayland.yaml
new file mode 100644
index 0000000..a970988
--- /dev/null
+++ b/void_wayland.yaml
@@ -0,0 +1,36 @@
+- name: Install void wayland environment
+  hosts: guest
+  become: true
+  vars:
+    ansible_chroot_exe: arch-chroot
+  tasks:
+    - name: Install intel wayland drivers
+      community.general.xbps:
+        name:
+          - mesa-dri
+        state: present
+
+    - name: Install wayland packages
+      community.general.xbps:
+        name:
+          - dbus
+          - seatd
+          - turnstile
+        state: present
+      notify: installed-wayland
+
+    - name: Activate wayland services
+      ansible.builtin.file:
+        force: "yes"
+        src: "/etc/sv/{{ item }}"
+        dest: "/etc/runit/runsvdir/default/{{ item }}"
+        state: link
+      with_items: [dbus, turnstiled, seatd]
+
+    - name: Install wlr desktop portals
+      community.general.xbps:
+        name:
+          - xdg-desktop-portal
+          - xdg-desktop-portal-wlr
+        state: present
+      notify: installed-wayland