-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.yml
45 lines (44 loc) · 1.05 KB
/
local.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
# Install brew
# Run core
# Run install
- hosts: localhost
vars:
source_key: "./.ssh/id_ed25519"
dest_key: "{{ lookup('env', 'HOME') }}/.ssh/id_ed25519"
personal: "{{ lookup('env', 'HOME') }}/personal"
tasks:
- name: build ssh
ansible.builtin.include_tasks: tasks/ssh.yml
tags:
- homebrew
- base
- name: build git
ansible.builtin.include_tasks: tasks/git.yml
tags:
- git
- base
- name: build core
ansible.builtin.include_tasks: tasks/core.yml
tags:
- core
- base
- name: build zsh
ansible.builtin.include_tasks: tasks/zsh.yml
tags:
- base
- zsh
- name: build nvim
ansible.builtin.include_tasks: tasks/nvim.yml
tags:
- install
- nvim
- name: build dotfiles
ansible.builtin.include_tasks: tasks/dotfiles.yml
tags:
- dotfiles
- install
- name: build obsidian
ansible.builtin.include_tasks: tasks/obsidian.yml
tags:
- install
- obsidian