dotfiles/ansible/roles/devpod/tasks/main.yml

30 lines
610 B
YAML
Raw Normal View History

2025-04-07 05:38:03 -05:00
- name: Load devpod variables if DEVPOD is true
include_vars: "vars/devpod.yml"
2025-05-17 15:09:08 -05:00
- name: install apt
include_tasks: "./scripts/install_apt.yml"
2025-04-07 05:38:03 -05:00
2025-05-17 14:32:25 -05:00
#- name: install brew
# include_tasks: "./scripts/install_brew.yml"
2025-04-07 05:38:03 -05:00
2025-05-17 14:55:43 -05:00
#- name: install go
# include_tasks: "./scripts/install_go.yml"
2025-04-07 05:38:03 -05:00
2025-04-07 05:44:59 -05:00
- name: run stow
shell: "stow --adopt ."
args:
chdir: ~/dotfiles
2025-05-17 14:55:43 -05:00
2025-05-17 15:09:08 -05:00
- name: Install Nix Packages
shell: "nix-env -iA nixpkgs.myPackages"
args:
chdir: ~/dotfiles
- name: install go apps
include_tasks: "./scripts/install_goapps.yml"
2025-05-17 14:55:43 -05:00
- name: git reset
shell: "git reset --hard"
args:
chdir: ~/dotfiles