commit 577bb0f3fed1217c1abbd3c416dcfb22894df07d
parent 671150ef78bf6e6b5c1df575892c9d66cf9763e1
Author: breadcat <breadcat@users.noreply.github.com>
Date: Mon, 18 Aug 2025 22:18:23 +0100
It's finally fixed, at long last
Deletes duplicates from source, not destination
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/duupmove.nix b/scripts/duupmove.nix
@@ -27,7 +27,7 @@
fi
done
- jdupes "." "$target_dir" -dN
+ ${pkgs.jdupes}/bin/jdupes -dNO "$target_dir" "."
'';
in {
environment.systemPackages = [duupmove];