dotfiles/roles/user/shell/zsh/tasks/main.yml
Matej Focko 01225fd44d
chore: rework directory structure
Signed-off-by: Matej Focko <me@mfocko.xyz>
2023-08-30 15:42:26 +02:00

18 lines
394 B
YAML

---
- name: Packages
ansible.builtin.include_tasks: install.yml
tags: install
- name: Plugin oh-my-zsh
ansible.builtin.include_tasks: oh-my-zsh.yml
tags: zsh-oh-my-zsh
- name: Plugin starship
ansible.builtin.include_tasks: starship.yml
- name: Set default shell
become: true
ansible.builtin.user:
name: "{{ target_user }}"
shell: /bin/zsh
tags: zsh/set-default-shell