machine_setup/ansible/roles/sound/tasks/linux.yaml

27 lines
560 B
YAML
Raw Normal View History

2022-12-02 22:31:39 +00:00
# - name: Build aur packages
# register: buildaur
# become_user: "{{ build_user.name }}"
# command: "aurutils-sync --no-view {{ item }}"
# args:
# creates: "/var/cache/pacman/custom/{{ item }}-*.pkg.tar.*"
# loop:
# - foo
# - name: Update cache
# when: buildaur.changed
# pacman:
# name: []
# state: present
# update_cache: true
2023-11-26 04:43:27 +00:00
2023-02-18 16:39:31 +00:00
- name: Install packages
package:
name:
- pipewire
- pipewire-pulse
- wireplumber
- pavucontrol
2023-11-26 04:43:27 +00:00
- pipewire-jack
- lib32-pipewire-jack
2023-02-18 16:39:31 +00:00
state: present