15 lines
400 B
YAML
15 lines
400 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Append to srcpkgs
|
|
ansible.builtin.set_fact:
|
|
pkg_archive: "{{ pkg_archive + ['nerdfonts'] }}"
|
|
when: ansible_system == 'Linux'
|
|
|
|
- name: Append to caskpkgs
|
|
ansible.builtin.set_fact:
|
|
pkg_cask: "{{ pkg_cask + [nerdfonts.fonts[font].brew] }}"
|
|
loop: "{{ nerdfonts.fonts }}"
|
|
loop_control:
|
|
loop_var: font
|
|
when: ansible_system == 'Darwin'
|