diff options
Diffstat (limited to 'src/config/tasks')
-rw-r--r-- | src/config/tasks/main.yaml | 25 |
1 files changed, 2 insertions, 23 deletions
diff --git a/src/config/tasks/main.yaml b/src/config/tasks/main.yaml index 2eda1c5..4ff9787 100644 --- a/src/config/tasks/main.yaml +++ b/src/config/tasks/main.yaml @@ -85,32 +85,11 @@ when: 'config.config.install_shell' -- name: Install Dotfiles (Wayland) +- name: Install Dotfiles become: true become_user: "{{ config.username }}" ansible.builtin.copy: src: "{{ item }}" dest: "/home/{{ config.username }}/.config/" backup: yes - loop: "{{ config_wayland }}" - when: 'config.config.install_wayland' - -- name: Install Dotfiles (Xorg) - become: true - become_user: "{{ config.username }}" - ansible.builtin.copy: - src: "{{ item }}" - dest: "/home/{{ config.username }}/.config/" - backup: yes - loop: "{{ config_xorg }}" - when: 'config.config.install_xorg' - -- name: Install Dotfiles (All) - become: true - become_user: "{{ config.username }}" - ansible.builtin.copy: - src: "{{ item }}" - dest: "/home/{{ config.username }}/.config/" - backup: yes - loop: "{{ config_all }}" - when: "config.config.install_xorg or config.config.install_wayland" + loop: "{{ config }}" |