17 lines
554 B
YAML
17 lines
554 B
YAML
---
|
|
# Configuration for base settings - Archlinux
|
|
|
|
- name: (arch) - ZSH base configuration
|
|
ansible.builtin.file:
|
|
src: "{{ dotfdir }}/zsh/distro/archlinux.base.zsh"
|
|
dest: "{{ dotfdir }}/zsh/distro.base.zsh"
|
|
state: link
|
|
when: ansible_lsb == [] or ansible_lsb.description == 'Arch Linux'
|
|
|
|
- name: (manj) - ZSH base configuration
|
|
ansible.builtin.file:
|
|
src: "{{ dotfdir }}/zsh/distro/manjaro.base.zsh"
|
|
dest: "{{ dotfdir }}/zsh/distro.base.zsh"
|
|
state: link
|
|
when: ansible_lsb != [] and ansible_lsb.description == 'Manjaro Linux'
|