dotfiles/ansible/roles/devpod/tasks/main.yml
2025-05-17 15:09:08 -05:00

29 lines
610 B
YAML

- name: Load devpod variables if DEVPOD is true
include_vars: "vars/devpod.yml"
- name: install apt
include_tasks: "./scripts/install_apt.yml"
#- name: install brew
# include_tasks: "./scripts/install_brew.yml"
#- name: install go
# include_tasks: "./scripts/install_go.yml"
- name: run stow
shell: "stow --adopt ."
args:
chdir: ~/dotfiles
- name: Install Nix Packages
shell: "nix-env -iA nixpkgs.myPackages"
args:
chdir: ~/dotfiles
- name: install go apps
include_tasks: "./scripts/install_goapps.yml"
- name: git reset
shell: "git reset --hard"
args:
chdir: ~/dotfiles