dotfiles/install.sh

15 lines
356 B
Bash
Raw Normal View History

2025-04-06 20:23:01 -05:00
#!/bin/bash
2025-05-17 15:39:10 -05:00
rm .bashrc .zshrc .ideavirmrc .gitmodules
2025-09-27 07:45:22 -05:00
sudo apt update && sudo apt install stow
stow --adopt .
git reset --hard
2025-09-27 07:13:57 -05:00
2025-09-27 07:37:55 -05:00
sudo mkdir -m 0755 /nix && sudo chown vscode /nix
2025-09-27 07:22:36 -05:00
sh <(curl -L https://nixos.org/nix/install) --no-daemon
2025-09-27 07:37:55 -05:00
/home/vscode/.nix-profile/bin/nix-env -iA nixpkgs.myPackages
2025-09-27 07:43:20 -05:00
cd "/home/vscode/dotfiles"
stow --adopt .
2025-09-27 08:06:51 -05:00
git reset --hard