-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinux.yml
More file actions
31 lines (31 loc) · 904 Bytes
/
Copy pathlinux.yml
File metadata and controls
31 lines (31 loc) · 904 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
30
31
- hosts: localhost
vars:
source_key: "./.ssh/id_ed25519"
dest_key: "{{ lookup('env', 'HOME') }}/.ssh/id_ed25519"
personal: "{{ lookup('env', 'HOME') }}/personal"
go_version: "1.19.3"
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-linux.yml
- include: tasks/node-setup-linux.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-linux.yml
- include: tasks/brave.yml
#- include: tasks/debugger.yml
- include: tasks/dotfiles.yml
- include: tasks/productivity-tools-linux.yml
- include: tasks/lsp.yml