diff --git a/localhost.yml b/localhost.yml index 0c2efad..67b5fff 100644 --- a/localhost.yml +++ b/localhost.yml @@ -5,9 +5,9 @@ - ubuntu - ubuntu-java - ubuntu-firefox - - dotfiles - prusa-slicer - dev-java + - dev-js - autofs - dwm - docker diff --git a/roles/desktop/tasks/arch.yml b/roles/desktop/tasks/arch.yml index a47ad90..73635fe 100644 --- a/roles/desktop/tasks/arch.yml +++ b/roles/desktop/tasks/arch.yml @@ -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 diff --git a/roles/desktop/tasks/audio.yml b/roles/desktop/tasks/audio.yml new file mode 100644 index 0000000..b7ed8df --- /dev/null +++ b/roles/desktop/tasks/audio.yml @@ -0,0 +1,8 @@ +- name: install audio [Arch] + become: yes + community.general.pacman: + name: + - pipewire + - pipewire-alsa + - pipewire-pulse + - wireplumber diff --git a/roles/desktop/tasks/bluetooth.yml b/roles/desktop/tasks/bluetooth.yml new file mode 100644 index 0000000..286fc89 --- /dev/null +++ b/roles/desktop/tasks/bluetooth.yml @@ -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