-
Notifications
You must be signed in to change notification settings - Fork 98
/
local.yml
31 lines (30 loc) · 846 Bytes
/
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
- hosts: localhost
vars:
source_key: "./.ssh/id_rsa"
dest_key: "{{ lookup('env', 'HOME') }}/.ssh/id_rsa"
personal: "{{ lookup('env', 'HOME') }}/personal"
pre_tasks:
- name: Update Apt
become: true
apt:
force_apt_get: true
update_cache: true
state: present
tags:
- install
- core
tasks:
- include: tasks/ssh.yml
- include: tasks/git-setup.yml
- include: tasks/core-setup.yml
- include: tasks/node-setup.yml
- include: tasks/npm-packages.yml
- include: tasks/zsh-setup.yml
- include: tasks/slack-setup.yml
- include: tasks/personal-projects.yml
- include: tasks/nvim-setup.yml
- include: tasks/brave.yml
- include: tasks/debugger.yml
- include: tasks/dotfiles.yml
- include: tasks/productivity-tools.yml
- include: tasks/lsp.yml