workstation/roles/home-cli/tasks/dotfiles.yml

26 lines
581 B
YAML
Raw Normal View History

---
2019-11-22 15:46:55 +00:00
- name: Copy .gemrc
copy:
src: gemrc
dest: "{{ ansible_env.HOME }}/.gemrc"
- name: Copy .gitconfig
copy:
src: gitconfig
dest: "{{ ansible_env.HOME }}/.gitconfig"
2019-11-25 11:01:39 +00:00
- name: Remove .hushlogin
file:
path: "{{ ansible_env.HOME }}/.hushlogin"
state: absent
- name: Copy .inputrc
copy:
src: inputrc
dest: "{{ ansible_env.HOME }}/.inputrc"
- name: Copy .tmux.conf
copy:
src: tmux.conf
dest: "{{ ansible_env.HOME }}/.tmux.conf"
2019-10-09 13:07:20 +00:00
- name: Copy openpgp.asc
copy:
src: openpgp.asc
dest: "{{ ansible_env.HOME }}/.config/openpgp.asc"