try to force https for dotfiles clone

git seems to fail with ssh, at least to github
This commit is contained in:
Noah Masur 2023-02-25 11:30:41 -05:00
parent e6456d7f02
commit ab6a339c34

View File

@ -14,6 +14,10 @@
[ "writeBoundary" ] ''
if [ ! -d "${config.dotfilesPath}" ]; then
$DRY_RUN_CMD mkdir --parents $VERBOSE_ARG $(dirname "${config.dotfilesPath}")
# Force HTTPS because anonymous SSH doesn't work
GIT_CONFIG_KEY_0 = "url.https://github.com/.insteadOf";
$DRY_RUN_CMD ${pkgs.git}/bin/git clone ${config.dotfilesRepo} "${config.dotfilesPath}"
fi
'';