diff options
Diffstat (limited to 'roles/_workstation')
-rw-r--r-- | roles/_workstation/sysconf/tasks/_void.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/roles/_workstation/sysconf/tasks/_void.yml b/roles/_workstation/sysconf/tasks/_void.yml new file mode 100644 index 0000000..058f7c3 --- /dev/null +++ b/roles/_workstation/sysconf/tasks/_void.yml @@ -0,0 +1,21 @@ + +# 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: "{{ _workstation_env_user }}" + group: "{{ item }}" + append: true + loop: + - _seatd + - audio + - video |