Add bluetooth install and separate audio stuff to new file

This commit is contained in:
Przemek Grondek 2024-01-25 11:56:08 +01:00
parent 9d0af474b7
commit bc82c3b50f
4 changed files with 25 additions and 13 deletions

View File

@ -5,9 +5,9 @@
- ubuntu
- ubuntu-java
- ubuntu-firefox
- dotfiles
- prusa-slicer
- dev-java
- dev-js
- autofs
- dwm
- docker

View File

@ -12,9 +12,6 @@
- polkit-gnome
- lightdm
- lightdm-gtk-greeter
- pipewire
- pipewire-alsa
- pipewire-audio
- helvum
- name: "Enable service"
@ -24,7 +21,7 @@
state: started
enabled: yes
- name: "Enable service"
- name: "Enable cron service"
become: yes
ansible.builtin.systemd:
name: cronie
@ -117,11 +114,6 @@
state: present
name: com.usebottles.bottles
- name: install audio [Arch]
become: yes
community.general.pacman:
name:
- pipewire
- pipewire-alsa
- pipewire-pulse
- wireplumber
- import_tasks: audio.yml
- import_tasks: bluetooth.yml

View File

@ -0,0 +1,8 @@
- name: install audio [Arch]
become: yes
community.general.pacman:
name:
- pipewire
- pipewire-alsa
- pipewire-pulse
- wireplumber

View File

@ -0,0 +1,12 @@
- name: install bluetooth
become: yes
community.general.pacman:
name:
- blueman
- name: "Enable service"
become: yes
ansible.builtin.systemd:
name: bluetooth
state: started
enabled: yes