feat(base): Set up iwd wireless service

This commit is contained in:
Marty Oehme 2025-02-27 09:29:33 +01:00
parent 7fe5d085fd
commit d4d0a68e63
Signed by: Marty
GPG key ID: 4E535BC19C61886E
2 changed files with 20 additions and 1 deletions

View file

@ -21,7 +21,6 @@ This is primarily made for _my_ setup to quickly get void linux up and running f
- could maybe symlink to `booster-void.img` and `initramfs-void.img`?
- and then do a search and add subitems for each 6.12.xyz kernel found?
- wifi setup
## Package wishlist
@ -36,3 +35,4 @@ packages to build xbps-src style:
- [ ] netbird
- wifi setup
- [ ] impala (iwd TUI)

View file

@ -132,6 +132,25 @@
with_items: [chronyd]
listen: installed-chrony
- name: Set up wireless networking
hosts: target_system
become: true
tags:
- wireless
- iwd
tasks:
- name: Install iwd
community.general.xbps:
name:
- iwd
state: present
- name: Activate wireless networking service
ansible.builtin.file:
src: "/etc/sv/iwd"
dest: "/etc/runit/runsvdir/default/iwd"
state: link
- name: Set up snapper backups
hosts: target_system
become: true