update conf

This commit is contained in:
Johannes Knopp
2026-04-06 01:30:38 +02:00
parent c2b28df404
commit 586e4b6320
9 changed files with 37 additions and 27 deletions

View File

@ -3,12 +3,14 @@
package:
name: zsh
state: present
become: yes
become_user: root
- name: Install oh-my-zsh
shell: |
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" --unattended
args:
creates: "{{ ansible_facts.env.HOME }}/.oh-my-zsh"
creates: "{{ home_dir }}/.oh-my-zsh"
- name: Check for custom zshrc
stat:
@ -18,7 +20,7 @@
- name: Symlink custom zshrc
file:
src: "{{ role_path }}/files/.zshrc"
dest: "{{ ansible_facts.env.HOME }}/.zshrc"
dest: "{{ home_dir }}/.zshrc"
state: link
force: yes
when: custom_zshrc.stat.exists