18 lines
420 B
YAML
18 lines
420 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add kitty
|
|
when:
|
|
- kitty_configured is undefined
|
|
block:
|
|
- name: Load kitty config
|
|
ansible.builtin.include_tasks:
|
|
file: config/kitty.yml
|
|
|
|
- name: Append kitty to pkg_sys
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + kitty.pkgs }}"
|
|
|
|
- name: Set kitty_configured
|
|
ansible.builtin.set_fact:
|
|
kitty_configured: true
|