9 lines
206 B
YAML
9 lines
206 B
YAML
---
|
|
- name: Configure oh my zsh, by pushing the config file
|
|
ansible.builtin.copy:
|
|
src: "{{ role_path }}/files/.zshrc"
|
|
dest: /home/max/.zshrc
|
|
owner: max
|
|
group: max
|
|
mode: u=rw,g=r,o-rwx
|