diff --git a/ansible/laptop-with-amd.yml b/ansible/laptop-with-amd.yml index d9de5e1..f9ccca4 100644 --- a/ansible/laptop-with-amd.yml +++ b/ansible/laptop-with-amd.yml @@ -15,6 +15,5 @@ - felix - tmux - neovim - - bluetooth - ufw - gnome diff --git a/ansible/laptop-with-intel.yml b/ansible/laptop-with-intel.yml index a5d2fa4..28dc7d7 100644 --- a/ansible/laptop-with-intel.yml +++ b/ansible/laptop-with-intel.yml @@ -15,6 +15,5 @@ - felix - tmux - neovim - - bluetooth - ufw - gnome diff --git a/ansible/roles/bluetooth/tasks/main.yml b/ansible/roles/bluetooth/tasks/main.yml deleted file mode 100644 index 8c8ccb2..0000000 --- a/ansible/roles/bluetooth/tasks/main.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -- name: Install Bluez (Bluetooth management) - become: true - pacman: - name: bluez - state: present -- name: Install Bluez Utils (Bluetooth utilities) - become: true - pacman: - name: bluez-utils - state: present -- name: Install Bluetuith (Bluetooth Terminal UI) - become: true - kewlfft.aur.aur: - name: bluetuith - state: present - update_cache: true -- name: Start Bluetooth service - become: true - service: - enabled: true - name: bluetooth - state: started