From ac3712aec5ceb5dc303105719a76ac72ef657b86 Mon Sep 17 00:00:00 2001 From: Artem Sheremet Date: Thu, 14 May 2026 15:20:23 +0200 Subject: [PATCH] Correct path to test legacy presence --- modules/home/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/home/common.nix b/modules/home/common.nix index d320cbb..f25c892 100644 --- a/modules/home/common.nix +++ b/modules/home/common.nix @@ -14,7 +14,7 @@ yubikey-manager ]; home.activation.stowLegacy = lib.hm.dag.entryAfter [ "writeBoundary" ] '' - if [ -d "$HOME/dotfiles" ]; then + if [ -d "$HOME/dotfiles/legacy" ]; then run ${pkgs.stow}/bin/stow -d $HOME/dotfiles -t $HOME legacy fi '';