fix bootstrap

This commit is contained in:
Barrett Ruth 2026-02-11 11:51:27 -05:00
parent 43ffd8e657
commit b3e4519dd2
Signed by: barrett
GPG key ID: A6C96C9349D2FC81

View file

@ -27,7 +27,7 @@ in
home.activation.cloneNixConfig = lib.hm.dag.entryAfter [ "createDirectories" ] ''
if [ ! -d "${repoDir}" ]; then
$DRY_RUN_CMD mkdir -p "$(dirname "${repoDir}")"
$DRY_RUN_CMD ${pkgs.git}/bin/git clone https://github.com/barrettruth/nix-config.git "${repoDir}"
$DRY_RUN_CMD ${pkgs.git}/bin/git clone https://github.com/barrettruth/nix-config.git "${repoDir}" || true
fi
'';