mirror of
https://github.com/fscotto/infra.git
synced 2026-07-29 16:20:01 +00:00
Elimina completamente la sessione desktop i3 (X11), ormai non più usata (gli host espongono solo sway e Hyprland su Wayland): - ruolo profile_desktop_i3 e voce emptty i3.desktop - desktop_i3_packages e i guard 'i3' in desktop_sessions_enabled - desktop_i3_dotfiles e host_i3_dotfiles (autorandr X11) - dotfiles i3/X11: .xinitrc, i3, i3blocks, picom, polybar, autorandr - task host-specifici i3 (copy dotfiles, wrap prime-run su nymph) - rimuove st (terminale X11 da sorgente) da desktop_void_source_tools - consolida lo script live in scripts/remove_i3.sh, elimina cleanup-i3.sh - aggiorna la documentazione (README/AGENTS/CLAUDE/knowledge) Config Emacs lasciata invariata di proposito. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
61 lines
1.4 KiB
YAML
61 lines
1.4 KiB
YAML
---
|
|
- hosts: all
|
|
become: true
|
|
pre_tasks:
|
|
- name: Load local vault variables when available
|
|
tags: [always]
|
|
ansible.builtin.include_vars:
|
|
file: "{{ playbook_dir }}/../secrets/vault.yml"
|
|
when: lookup('ansible.builtin.fileglob', playbook_dir + '/../secrets/vault.yml', errors='ignore', wantlist=True) | length > 0
|
|
|
|
- name: Load machine-local vault variables when available
|
|
tags: [always]
|
|
ansible.builtin.include_vars:
|
|
file: "{{ playbook_dir }}/../secrets/vault.local.yml"
|
|
when: lookup('ansible.builtin.fileglob', playbook_dir + '/../secrets/vault.local.yml', errors='ignore', wantlist=True) | length > 0
|
|
|
|
roles:
|
|
- dotfiles_common
|
|
|
|
- hosts: void
|
|
become: true
|
|
|
|
roles:
|
|
- packages_void
|
|
- services_runit
|
|
- profile_desktop_common
|
|
- profile_desktop_sway
|
|
- profile_desktop_hyprland
|
|
- profile_desktop_host
|
|
|
|
- hosts: workstation_dev_fedora
|
|
become: true
|
|
|
|
roles:
|
|
- packages_fedora
|
|
- services_systemd
|
|
- profile_workstation_dev_common
|
|
|
|
- hosts: workstation_host_linux
|
|
become: true
|
|
|
|
roles:
|
|
- profile_workstation_gnome
|
|
|
|
- hosts: workstation_dev_wsl
|
|
become: true
|
|
|
|
roles:
|
|
- packages_ubuntu
|
|
- services_systemd
|
|
- profile_workstation_dev_common
|
|
- profile_workstation_dev_wsl
|
|
|
|
- hosts: ubuntu_server
|
|
become: true
|
|
|
|
roles:
|
|
- packages_ubuntu
|
|
- services_systemd
|
|
- profile_server
|