A new role (separate from base) that gives workstation-class hosts (ubongo now, mamba later) a clean interactive environment: zsh + oh-my-zsh + oh-my-posh, tmux + TPM plugins, and neovim. Dotfiles are real files deployed via GNU stow (not templated); pinned nvim v0.12.2 + oh-my-posh 29.0.1. Configs re-derived (ADR-013) from AnsibleBaobabV4 + the operator's fisi setup on boma's terms: no Nerd Font (headless host), no system LSP suite (nvim uses mason), versions pinned (V4 tracks latest). Applied via playbooks/workstation.yml to the control group for users sjat + claude. Lint + Molecule (idempotent) green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
23 lines
614 B
YAML
23 lines
614 B
YAML
---
|
|
- name: Install developer-environment packages
|
|
ansible.builtin.apt:
|
|
name: "{{ dev_env__packages }}"
|
|
state: present
|
|
update_cache: true
|
|
cache_valid_time: 3600
|
|
tags: [packages]
|
|
|
|
- name: Install Neovim (pinned release)
|
|
ansible.builtin.include_tasks: neovim.yml
|
|
tags: [packages]
|
|
|
|
- name: Install oh-my-posh prompt (pinned release)
|
|
ansible.builtin.include_tasks: oh_my_posh.yml
|
|
tags: [packages]
|
|
|
|
- name: Configure each developer user
|
|
ansible.builtin.include_tasks: per_user.yml
|
|
loop: "{{ dev_env__users }}"
|
|
loop_control:
|
|
loop_var: dev_env__user
|
|
label: "{{ dev_env__user }}"
|