Files
Cachy-workstation/site.yml
T
cjr f1dd4fb3c0 Fix variable deprecations and split site.yml into system and user plays
Replace deprecated ansible_user_dir/ansible_user_id with
ansible_facts['user_dir'/'user_id'] across all roles. Switch git repo
URLs from HTTPS to SSH. Split site.yml into two plays so user-facing
roles (dotfiles, scripts, hotkeys) run without become.
2026-06-20 11:45:05 -05:00

32 lines
572 B
YAML

---
- name: Configure CachyOS workstation (system)
hosts: cachy
connection: local
become: true
roles:
- role: firewall
tags: firewall
- role: packages
tags: packages
- role: docker
tags: docker
- role: virtualization
tags: virtualization
- role: web
tags: web
- role: flatpak
tags: flatpak
- name: Configure CachyOS workstation (user)
hosts: cachy
connection: local
roles:
- role: dotfiles
tags: dotfiles
- role: scripts
tags: scripts
- role: hotkeys
tags: hotkeys