This commit is contained in:
DeveloperDurp 2025-09-27 08:06:51 -05:00
parent cd804f7bcf
commit c6571feb76
3 changed files with 25 additions and 11 deletions

View file

@ -18,6 +18,7 @@
bat bat
opentofu opentofu
helm helm
vivid
]; ];
}; };
}; };

View file

@ -4,23 +4,19 @@
- name: install apt - name: install apt
include_tasks: "./scripts/install_apt.yml" include_tasks: "./scripts/install_apt.yml"
#- name: install brew - name: install brew
# include_tasks: "./scripts/install_brew.yml" include_tasks: "./scripts/install_brew.yml"
#- name: install go - name: install go
# include_tasks: "./scripts/install_go.yml" include_tasks: "./scripts/install_go.yml"
- name: run stow - name: run stow
become_user: vscode become_user: vscode
shell: "stow --adopt ." shell: "sudo mkdir -m 0755 /nix && sudo chown vscode /nix"
args:
chdir: ~/dotfiles
- name: git reset - name: git reset
become_user: vscode become_user: vscode
shell: "git reset --hard" shell: "sh <(curl -L https://nixos.org/nix/install) --no-daemon"
args:
chdir: ~/dotfiles
- name: Install Nix Packages - name: Install Nix Packages
become_user: vscode become_user: vscode
@ -30,3 +26,20 @@
- name: install go apps - name: install go apps
include_tasks: "./scripts/install_goapps.yml" include_tasks: "./scripts/install_goapps.yml"
- name: git reset
become_user: vscode
shell: "git reset --hard"
args:
chdir: ~/dotfiles
- name: git reset
become_user: vscode
shell: "git reset --hard"
args:
chdir: ~/dotfiles
- name: Change default shell for user
user:
name: vscode
shell: zsh

View file

@ -11,4 +11,4 @@ sh <(curl -L https://nixos.org/nix/install) --no-daemon
cd "/home/vscode/dotfiles" cd "/home/vscode/dotfiles"
stow --adopt . stow --adopt .
kit reset --hard git reset --hard