diff --git a/local.yml b/local.yml index a74d27f..83fd784 100644 --- a/local.yml +++ b/local.yml @@ -74,7 +74,7 @@ become: true become_user: "{{ username }}" ansible.builtin.file: - path: "{{ ansible_user_dir }}/.config/{{ item }}" + path: "/home/{{ username }}/.config/{{ item }}" state: directory mode: '0755' loop: @@ -89,7 +89,7 @@ become_user: "{{ username }}" ansible.builtin.template: src: "templates/{{ item.src }}" - dest: "{{ ansible_user_dir }}/.config/{{ item.dest }}" + dest: "/home/{{ username }}/.config/{{ item.dest }}" mode: '0644' loop: - { src: 'hyprland.conf.j2', dest: 'hypr/hyprland.conf' }