-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.yaml
104 lines (102 loc) · 2.52 KB
/
site.yaml
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
---
# https://github.com/ansible/ansible/issues/16724
# https://willthames.github.io/2018/07/01/connection-local-vs-delegate_to-localhost.html
# https://docs.ansible.com/ansible/latest/inventory/implicit_localhost.html
- hosts:
- localhost
vars:
ansible_connection: local
ansible_python_interpreter: "{{ ansible_playbook_python }}"
tasks:
- name: homebrew
ansible.builtin.include_role:
name: homebrew
apply:
tags: [homebrew, brew]
- name: Create data folder
tags: [setup]
file:
path: ~/.config
state: directory
mode: "0755"
- name: karabiner
ansible.builtin.include_role:
name: karabiner
apply:
tags: [karabiner]
- name: alacritty
ansible.builtin.include_role:
name: alacritty
apply:
tags: [alacritty]
- name: zsh
ansible.builtin.include_role:
name: zsh
apply:
tags: [zsh, sh]
- name: gnupg
ansible.builtin.include_role:
name: gnupg
apply:
tags: [gnupg, gpg]
- name: git
ansible.builtin.include_role:
name: git
apply:
tags: [git]
- name: tmux
ansible.builtin.include_role:
name: tmux
apply:
tags: [tmux]
- name: fzf
ansible.builtin.include_role:
name: fzf
apply:
tags: [fzf]
- name: direnv
ansible.builtin.include_role:
name: direnv
apply:
tags: [direnv]
- name: ctags
ansible.builtin.include_role:
name: ctags
apply:
tags: [ctags]
- name: neovim
ansible.builtin.include_role:
name: neovim
apply:
tags: [neovim, nvim, vim]
- name: docker
ansible.builtin.include_role:
name: docker
apply:
tags: [docker, docker-compose]
- name: pipx
ansible.builtin.include_role:
name: pipx
apply:
tags: [pipx]
- name: pyenv
ansible.builtin.include_role:
name: pyenv
apply:
tags: [pyenv]
- name: go
ansible.builtin.include_role:
name: go
apply:
tags: [go]
- name: rust
ansible.builtin.include_role:
name: rust
apply:
tags: [rust]
roles:
# - { role: readline, tags: [readline] }
# - { role: python, tags: [python] }
# - { role: nvm, tags: [nvm] }
# - { role: mc, tags: [mc, midnight-commander] }
# - { role: cookiecutter, tags: [cookiecutter] }