-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
88 lines (71 loc) · 1.72 KB
/
main.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
- import_playbook: core.yml
- name: Braes Dev Machine
hosts: localhost
connection: local
vars:
is_mac: "{{ ansible_distribution == 'MacOSX' }}"
environment:
PATH: "{{ ansible_env.HOME }}/.nvm/versions/node/v16.13.1/bin:/home/linuxbrew/.linuxbrew/bin:/usr/local/texlive/2021/bin/universal-darwin:{{ ansible_env.PATH }}"
tasks:
- import_tasks: tasks/files/projects.yml
tags: projects
- name: Brew Install
include_tasks: tasks/common/brew_install.yml
tags:
- always
loop:
- k6
- name: Code Extensions Install
include_tasks: tasks/common/code_install.yml
tags:
- always
loop:
- redhat.ansible
- import_tasks: tasks/tools/latex.yml
tags:
- tools
- languages
- latex
- import_tasks: tasks/tools/isabelle.yml
tags:
- tools
- languages
- isabelle
- import_tasks: tasks/tools/act.yml
tags:
- tools
- devops
- act
- import_tasks: tasks/tools/ansible.yml
tags:
- tools
- devops
- ansible
- import_tasks: tasks/tools/terraform.yml
tags:
- tools
- devops
- terraform
- import_tasks: tasks/tools/nodejs.yml
tags:
- tools
- languages
- node
- import_tasks: tasks/tools/plantuml.yml
tags:
- tools
- plant
- import_tasks: tasks/tools/chrome.yml
tags:
- tools
- chrome
- import_tasks: tasks/config/wallpaper.yml
tags:
- config
- personal
- wallpaper
- import_tasks: tasks/config/workspaces.yml
tags:
- config
- personal
- workspaces