Configure private packages as part of the bootstrap

This commit is contained in:
2024-02-06 09:26:49 +00:00
parent 3f19569f0e
commit 5e0910798e

View File

@@ -7,12 +7,20 @@ if [ $? -ne 0 ]; then
fi
# Clone dotfiles
git clone https://github.com/nikdoof/dotfiles.git $HOME/.dotfiles >/dev/null
git clone git@github.com:nikdoof/dotfiles.git $HOME/.dotfiles >/dev/null
git clone git@github.com:nikdoof/dotfiles-private.git $HOME/.dotfiles-private >/dev/null
# Stow the default packages
# Stow the default public packages
for package in bin shell-common bash zsh; do
echo "Stowing ${package}"
$HOME/.dotfiles/bin/bin/stowage --clobber install $package
done
# Stow the default private packages
for package in ssh; do
echo "Stowing ${package}"
$HOME/.dotfiles/bin/bin/stowage -r $HOME/.dotfiles-private --clobber install $package
done
echo ""
echo "Done, either source ~/.bash_profile / ~/.zshrc or restart your shell."