mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
- Add profile_desktop_common with shared desktop bootstrap (emptty, PAM, dotfiles, templates, GPG, Maildir, Flatpak, st, external tools) - Add profile_desktop_host with host-specific tasks (NVIDIA/PRIME on nymph) - Reduce profile_desktop_i3 to i3/X11-only tasks - Create profile_desktop_hyprland for Hyprland Wayland session - Add dual-session support (i3 + Hyprland) on nymph with session choice - Create shared Hyprland/Waybar dotfiles under dotfiles/desktop/ - Fix Waybar: bottom position, no persistent workspaces, sort by number - Rename host_dotfiles to host_i3_dotfiles for clarity - Make emptty restart manual by default to avoid session drops
40 lines
793 B
YAML
40 lines
793 B
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') != ''
|
|
|
|
roles:
|
|
- dotfiles_common
|
|
|
|
- hosts: void
|
|
become: true
|
|
|
|
roles:
|
|
- packages_void
|
|
- services_runit
|
|
- profile_desktop_common
|
|
- profile_desktop_i3
|
|
- profile_desktop_hyprland
|
|
- profile_desktop_host
|
|
|
|
- hosts: ubuntu_workstation
|
|
become: true
|
|
|
|
roles:
|
|
- packages_ubuntu
|
|
- services_systemd
|
|
- profile_workstation_gnome
|
|
|
|
- hosts: ubuntu_server
|
|
become: true
|
|
|
|
roles:
|
|
- packages_ubuntu
|
|
- services_systemd
|
|
- profile_server
|