You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB

- 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
- neovim
- core
- golang
- dotfiles
- name: Update Apt
become: true
apt:
name: [ "sudo", "git" ]
tags:
- install
- neovim
- dotfiles
tasks:
# - include: tasks/ssh.yml
# - include: tasks/git-setup.yml
- include: tasks/cli-tools.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/workspace-setup.yml
- include: tasks/dotfiles.yml
- include: tasks/meilisearch.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
- include: tasks/golang-setup.yml
- include: tasks/java-setup.yml