From 30800804cbbfe055f0548f98f25f02529819a097 Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Tue, 25 Feb 2025 19:58:20 -0800 Subject: [PATCH] Fix: Disable inclusion of repo. Causes collision on switch. --- dotfiles/modules/system.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/modules/system.nix b/dotfiles/modules/system.nix index 72d7dd50..dacbe97f 100644 --- a/dotfiles/modules/system.nix +++ b/dotfiles/modules/system.nix @@ -57,7 +57,7 @@ home-manager.users."${sys.username}" = { home.stateVersion = "24.11"; home.file."repo" = { - enable = true; + enable = false; recursive = true; source = ../../.; target = sys.repoPath;