From c321289ca086a70b9fcc226bfc0a16324e9f6ed7 Mon Sep 17 00:00:00 2001
From: Marty Oehme <marty.oehme@gmail.com>
Date: Fri, 21 Feb 2025 16:55:10 +0100
Subject: [PATCH] feat(custom): Add keyd service

---
 play.yaml        |  3 +++
 void_custom.yaml | 22 ++++++++++++++++++++++
 2 files changed, 25 insertions(+)
 create mode 100644 void_custom.yaml

diff --git a/play.yaml b/play.yaml
index 4e7b1b2..ddde4b3 100644
--- a/play.yaml
+++ b/play.yaml
@@ -21,6 +21,9 @@
 - name: Import chroot user management tasks
   ansible.builtin.import_playbook: void_user.yaml
 
+- name: Import chroot void customizations
+  ansible.builtin.import_playbook: void_custom.yaml
+
     #   - I chose to use booster instead of dracut
     # - easiest way to achieve this is before installing `base-system`
     #   to `echo 'ignorepkg=dracut' >> /etc/xbps.d/ignore-dracut.conf`
diff --git a/void_custom.yaml b/void_custom.yaml
new file mode 100644
index 0000000..f3ad205
--- /dev/null
+++ b/void_custom.yaml
@@ -0,0 +1,22 @@
+- name: Install void customizations
+  hosts: guest
+  become: true
+  vars:
+    ansible_chroot_exe: arch-chroot
+  tasks:
+    - name: Set up keyd for custom key events
+      community.general.xbps:
+        name:
+          - keyd
+        state: present
+      notify: installed-keyd
+
+  handlers:
+    - name: Activate keyd service
+      ansible.builtin.file:
+        force: 'yes'
+        src: "/etc/sv/{{ item }}"
+        dest: "/etc/runit/runsvdir/default/{{ item }}"
+        state: link
+      with_items: [ keyd ]
+      listen: installed-keyd