From b3e4519dd29151453e9f269c5882c814d7e966fd Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Wed, 11 Feb 2026 11:51:27 -0500 Subject: [PATCH] fix bootstrap --- home/modules/bootstrap.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/modules/bootstrap.nix b/home/modules/bootstrap.nix index 484525c..1901809 100644 --- a/home/modules/bootstrap.nix +++ b/home/modules/bootstrap.nix @@ -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 '';