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
- ubuntu-java - ubuntu-java
- ubuntu-firefox - ubuntu-firefox
- dotfiles
- prusa-slicer - prusa-slicer
- dev-java - dev-java
- dev-js
- autofs - autofs
- dwm - dwm
- docker - docker

View File

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

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