dotfiles/.ansible/roles/linux_desktop/tasks/config.yaml
2019-01-20 10:58:22 +00:00

17 lines
311 B
YAML

- name: Checkout some repositories for local config
tags:
- config
git:
repo: "{{ item.repo }}"
dest: "{{ item.dest }}"
loop: "{{ config_repos }}"
- name: Conky configuration
tags:
- config
- conky
template:
src: 'templates/conkyrc.j2'
dest: '~/.conkyrc'
mode: '0600'