We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, I use nix copy to copy paths from a cached chroot store from and into root store.
nix copy
Copying takes a lot of time at the start of a job.
daemon 1
/nix/store
daemon 2
file://
The text was updated successfully, but these errors were encountered:
Solved by https://github.com/deemp/cache-nix-too/tree/use-nix-quick-install-action as it becomes possible to restore and save store paths directly without copying from an intermediate store.
Sorry, something went wrong.
No branches or pull requests
Currently, I use
nix copy
to copy paths from a cached chroot store from and into root store.Copying takes a lot of time at the start of a job.
Possible solution
daemon 1
with low priority copies paths that aren't yet in/nix/store
.daemon 2
with high priority substitutes paths on demand.daemon 2
needs to substitute and lock the store,daemon 1
stops for a while, then continues.Advantages
Disadvantages
Alternatives
file://
(docs)The text was updated successfully, but these errors were encountered: