diff --git a/pkgs/clan-cli/clan_cli/templates.py b/pkgs/clan-cli/clan_cli/templates.py index 4841e19df..8e1d78a25 100644 --- a/pkgs/clan-cli/clan_cli/templates.py +++ b/pkgs/clan-cli/clan_cli/templates.py @@ -169,7 +169,7 @@ class InputPrio: def copy_from_nixstore(src: Path, dest: Path) -> None: - run(["cp", "-r", "--reflink=auto", str(src), str(dest)]) + run(["cp", "-r", str(src), str(dest)]) run(["chmod", "-R", "u+w", str(dest)])