The NixOS config in this repos is just used to produce a non-trivial derivation
graph that can demonstrate the slowness introduced by the many sequential
QueryPathInfo ops that nix copy --from ssh-ng://... results in.
$ nix path-info --derivation .#nixosConfigurations.test.config.system.build.toplevel
/nix/store/q4bjy0j6jfs2ydp3d8xqx5g8giv5v9mq-nixos-system-test-26.11.20260531.331800d.drv
$ nix --version
nix (Nix) 2.31.5
$ ssh wisteria nix --version
nix (Nix) 2.31.5
$ nix copy --to ssh-ng://wisteria /nix/store/q4bjy0j6jfs2ydp3d8xqx5g8giv5v9mq-nixos-system-test-26.11.20260531.331800d.drv
$ time nix copy --from ssh-ng://wisteria /nix/store/q4bjy0j6jfs2ydp3d8xqx5g8giv5v9mq-nixos-system-test-26.11.20260531.331800d.drv
real 0m9.988s
user 0m0.763s
sys 0m0.599s
$ time nix copy --from ssh-ng://wisteria /nix/store/q4bjy0j6jfs2ydp3d8xqx5g8giv5v9mq-nixos-system-test-26.11.20260531.331800d.drv
real 0m11.494s
user 0m0.874s
sys 0m0.601s
$ time nix copy --from ssh://wisteria /nix/store/q4bjy0j6jfs2ydp3d8xqx5g8giv5v9mq-nixos-system-test-26.11.20260531.331800d.drv
real 0m0.546s
user 0m0.073s
sys 0m0.056s