17 lines
269 B
YAML
17 lines
269 B
YAML
---
|
|
# Setting up zsh
|
|
|
|
- name: Configuration
|
|
ansible.builtin.import_tasks: config/main.yml
|
|
tags:
|
|
- zsh
|
|
- zsh-config
|
|
|
|
- name: Default shell
|
|
ansible.builtin.user:
|
|
name: "{{ ansible_user_id }}"
|
|
shell: /usr/bin/zsh
|
|
tags:
|
|
- zsh
|
|
- zsh-defshell
|