diff options
author | Aaditya Dhruv <[email protected]> | 2025-06-06 11:16:42 -0500 |
---|---|---|
committer | Aaditya Dhruv <[email protected]> | 2025-06-06 11:17:00 -0500 |
commit | 5fcb99d7c16029ee0495a437a7bbe7b003dda023 (patch) | |
tree | c4074843eaf86869d5902be30a0c5068c3740dd2 /src/config/tasks | |
parent | 97f21912d5f087dfa15cdba7de04e500ea08743a (diff) |
Cleanup configs
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 }}" |