diff --git a/ansible/inventory/host_vars/nymph.yml b/ansible/inventory/host_vars/nymph.yml index 2ba88c0..67d0059 100644 --- a/ansible/inventory/host_vars/nymph.yml +++ b/ansible/inventory/host_vars/nymph.yml @@ -27,3 +27,6 @@ host_i3_dotfiles: - src: .config/autorandr/ dest: .config/autorandr/ mode: preserve + - src: .config/wireplumber/wireplumber.conf.d/60-camera-priority.conf + dest: .config/wireplumber/wireplumber.conf.d/60-camera-priority.conf + mode: "0644" diff --git a/ansible/roles/profile_desktop_host/tasks/nymph.yml b/ansible/roles/profile_desktop_host/tasks/nymph.yml index 21f8921..167c82a 100644 --- a/ansible/roles/profile_desktop_host/tasks/nymph.yml +++ b/ansible/roles/profile_desktop_host/tasks/nymph.yml @@ -39,13 +39,3 @@ regexp: '^bindsym \$mod\+Return exec --no-startup-id /usr/bin/alacritty' line: 'bindsym $mod+Return exec --no-startup-id ~/.local/bin/prime-run /usr/bin/alacritty' when: "'i3' in (desktop_sessions_enabled | default([]))" - -- name: Deploy WirePlumber camera priority config - tags: [dotfiles, dotfiles:host] - ansible.builtin.copy: - src: "{{ playbook_dir }}/../dotfiles/nymph/.config/wireplumber/wireplumber.conf.d/60-camera-priority.conf" - dest: "{{ user_home }}/.config/wireplumber/wireplumber.conf.d/60-camera-priority.conf" - owner: "{{ username }}" - group: "{{ user_group }}" - mode: "0644" - force: true