This commit is contained in:
DeveloperDurp 2025-05-17 15:28:09 -05:00
parent b83c427d92
commit 461e223c0d

View file

@ -11,19 +11,23 @@
# include_tasks: "./scripts/install_go.yml" # include_tasks: "./scripts/install_go.yml"
- name: run stow - name: run stow
become_user: vscode
shell: "stow --adopt ." shell: "stow --adopt ."
args: args:
chdir: ~/dotfiles chdir: ~/dotfiles
- name: git reset - name: git reset
become_user: vscode
shell: "git reset --hard" shell: "git reset --hard"
args: args:
chdir: ~/dotfiles chdir: ~/dotfiles
- name: Install Nix Packages - name: Install Nix Packages
become_user: vscode
shell: "nix-env -iA nixpkgs.myPackages" shell: "nix-env -iA nixpkgs.myPackages"
args: args:
chdir: ~/dotfiles chdir: ~/dotfiles
- name: install go apps - name: install go apps
become_user: vscode
include_tasks: "./scripts/install_goapps.yml" include_tasks: "./scripts/install_goapps.yml"