1
0
Fork 0

linux-setup.sh: run rustup-manage.sh at the end

This commit is contained in:
Pratham Patel 2024-02-06 13:06:18 +05:30
parent 8a61446a38
commit a64394c866
Signed by: thefossguy
SSH Key Fingerprint: SHA256:/B3wAg7jnMEBQ2JwkebbS/eXVZANDmqRfnd9QkIhxMI
1 changed files with 4 additions and 0 deletions

View File

@ -142,10 +142,14 @@ function home_manager_setup() {
fi
/nix/var/nix/profiles/default/bin/nix-shell '<home-manager>' -A install
}
function run_rustup() {
"${HOME}"/.local/scripts/other-common-scripts/rust-manage.sh "${HOME}"/.nix-profile/bin/rustup
}
function common_setup() {
install_dotfiles
nix_setup
home_manager_setup
run_rustup
}