Files
ansible/tasks/dotfiles.yml
T

15 lines
410 B
YAML
Raw Normal View History

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