Files
dotfiles/config/ansible/main.yml
Menno van Leeuwen 62954eb986
Some checks failed
Nix Format Check / check-format (push) Failing after 37s
feat: remove deprecated shell scripts and add Python alternatives for all of them
2025-03-10 15:48:33 +01:00

16 lines
503 B
YAML

- name: Configure all hosts
hosts: all
gather_facts: true
tasks:
- name: Include global tasks
ansible.builtin.import_tasks: tasks/global/global.yml
- name: Include workstation tasks
ansible.builtin.import_tasks: tasks/workstations/workstation.yml
when: hostname in ['mennos-laptop', 'mennos-desktop']
- name: Include server tasks
ansible.builtin.import_tasks: tasks/servers/server.yml
when: hostname in ['mennos-server', 'mennos-hobbypc', 'mennos-vm']