You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
358 B
13 lines
358 B
12 months ago
|
---
|
||
|
- name: Setup pipewire
|
||
|
hosts: localhost
|
||
|
connection: local
|
||
|
become: false
|
||
|
vars:
|
||
|
uid: "{{ lookup('env','USER') }}"
|
||
|
tasks:
|
||
|
- name: Enable pipewire-audio
|
||
|
ansible.builtin.command:
|
||
|
cmd: systemctl --user enable --now pipewire-pulse
|
||
|
creates: /home/{{ uid }}/.config/systemd/user/default.target.wants/pipewire-pulse.service
|