blob: 1337cfabf6ec964c13fce925a22befccbd2dca80 (
plain) (
tree)
|
|
# workstation ~~ roles/_workstation/sysconf/tasks/_voidlinux.yml
# init voidlinux based workstation
---
- name: ensure seatd is enabled
service:
name: seatd
enabled: true
state: restarted
- name: append current user to system groups
user:
name: "{{ _ws_user }}"
groups: "{{ item }}"
append: true
loop:
- _seatd
- audio
- video
- wheel
|