17 lines
485 B
YAML
17 lines
485 B
YAML
---
|
|
# Configuration for base settings - Debian
|
|
|
|
- name: (deb) - ZSH base configuration
|
|
ansible.builtin.file:
|
|
src: "{{ dotfdir }}/zsh/distro/debian.base.zsh"
|
|
dest: "{{ dotfdir }}/zsh/distro.base.zsh"
|
|
state: link
|
|
when: ansible_distribution == 'Debian'
|
|
|
|
- name: (ubu) - ZSH base configuration
|
|
ansible.builtin.file:
|
|
src: "{{ dotfdir }}/zsh/distro/ubuntu.base.zsh"
|
|
dest: "{{ dotfdir }}/zsh/distro.base.zsh"
|
|
state: link
|
|
when: ansible_distribution == 'Ubuntu'
|