ilia 579f0709ce Update Makefile and inventory configurations for improved task execution and organization
- Refactor Makefile to enhance command structure, including clearer descriptions and usage examples for targets related to development, inventory, and monitoring tasks.
- Update inventory files to ensure correct host configurations and user settings, including adjustments to ansible_user for specific hosts.
- Modify group_vars to streamline Tailscale configuration and ensure proper handling of authentication keys.

These changes improve the clarity and usability of the Makefile and inventory setup, facilitating smoother operations across the infrastructure.
2025-10-09 21:24:45 -04:00

24 lines
687 B
YAML

---
# Shell role defaults
# List of users to configure zsh for
# By default, only configure the ansible user
# Override in host_vars to add more users
shell_users:
- "{{ ansible_user | default(ansible_user_id) }}"
# Additional users to configure (appended to shell_users)
# Use this to add users WITHOUT having to repeat ansible_user
# Example in host_vars:
# shell_additional_users:
# - beast
# - ladmin
shell_additional_users: []
# Zsh plugins to install
zsh_plugins:
- name: "zsh-syntax-highlighting"
repo: "https://github.com/zsh-users/zsh-syntax-highlighting.git"
- name: "zsh-autosuggestions"
repo: "https://github.com/zsh-users/zsh-autosuggestions.git"