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

21 lines
484 B
YAML

---
- name: Copy .gemrc
copy:
src: gemrc
dest: "{{ ansible_env.HOME }}/.gemrc"
- 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"
- name: Copy openpgp.asc
copy:
src: openpgp.asc
dest: "{{ ansible_env.HOME }}/.config/openpgp.asc"