18 lines
429 B
YAML
18 lines
429 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Add greetd
|
|
when:
|
|
- greetd_configured is undefined
|
|
block:
|
|
- name: Load greetd config
|
|
ansible.builtin.include_tasks:
|
|
file: config/greetd.yml
|
|
|
|
- name: Append greetd to pkg_sys
|
|
ansible.builtin.set_fact:
|
|
pkg_sys: "{{ pkg_sys + [greetd.pkg] }}"
|
|
|
|
- name: Set greetd_configured
|
|
ansible.builtin.set_fact:
|
|
greetd_configured: true
|