--- - name: Dotfiles - klon repo til ~/.dotfiles ansible.builtin.git: repo: https://git.itedb.dk/glennigen/.dotfiles.git dest: "{{ lookup('env', 'HOME') }}/.dotfiles" update: false become: false - name: Dotfiles - stow configs til ~ ansible.builtin.command: cmd: stow -d stow_me/ -t {{ lookup('env', 'HOME') }} . chdir: "{{ lookup('env', 'HOME') }}/.dotfiles" become: false changed_when: false