diff options
-rw-r--r-- | local.yml | 1 | ||||
-rw-r--r-- | tasks/dotfiles.yml | 5 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,4 @@ - hosts: localhost tasks: - include: tasks/dependencies.yml + - include: tasks/dotfiles.yml diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml new file mode 100644 index 0000000..cf64d9e --- /dev/null +++ b/tasks/dotfiles.yml @@ -0,0 +1,5 @@ + +- name: Stow dotfiles + shell: cd dotfiles && for dir in *; do (stow $dir -t ~); done + tags: + - dotfiles |