Add P10k installation / configuration

This commit is contained in:
2025-01-09 17:15:23 +01:00
parent 19425ca130
commit 9a1412067c
21 changed files with 5656 additions and 80 deletions

View File

@@ -1,7 +1,12 @@
---
- name: "OMZ | establish install location."
set_fact:
omz_install_path: "{{ ansible_env.HOME }}/{{ omz_install_directory }}"
omz_install_path: >
{% if user == 'root' %}
/root/.{{ omz_install_directory }}
{% else %}
/home/{{ omz_user.name }}/{{ omz_install_directory }}
{% endif %}
- name: "OMZ | clone Oh My ZSH repo for user."
git: