ansible-desktop/roles/desktop/tasks/bluetooth.yml
2024-12-21 00:54:31 +01:00

15 lines
310 B
YAML

- name: "[Arch] install bluetooth"
when: ansible_distribution == "Archlinux"
become: yes
community.general.pacman:
name:
- blueman
- bluez
- bluez-utils
- name: "[All] Enable service"
become: yes
ansible.builtin.systemd:
name: bluetooth
state: started
enabled: yes