-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.yml
More file actions
29 lines (23 loc) · 843 Bytes
/
main.yml
File metadata and controls
29 lines (23 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
- name: Main Playbook
hosts: localhost
gather_facts: true
tasks:
- name: Include macOS tasks
include_tasks: tasks/macos-packages.yml
when: ansible_facts['os_family'] == 'Darwin'
- name: Include Ubuntu tasks
include_tasks: tasks/ubuntu-packages.yml
when: ansible_facts['os_family'] == 'Debian'
- name: Include Arch tasks
include_tasks: tasks/arch-packages.yml
when: ansible_facts['os_family'] == 'Archlinux'
- import_playbook: tasks/ohmyzsh.yml
- import_playbook: tasks/dotfiles.yml
- import_playbook: tasks/zoxide.yml
- import_playbook: tasks/nerdfonts.yml
- import_playbook: tasks/asdf.yml
- import_playbook: tasks/install-python.yml
- import_playbook: tasks/install-apps.yml
- import_playbook: tasks/neovim.yml
- import_playbook: tasks/cleanup.yml