19 lines
394 B
YAML
19 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
|