-
How could I save neovim stuff within /nix/store into a tarball file and then load it in other machines offline? |
Beta Was this translation helpful? Give feedback.
Answered by
mrcjkb
Apr 21, 2024
Replies: 1 comment 24 replies
-
already try nix copy cmd, but it says source tree can’t find /flake.nix. But I find that flake file in /nix/store |
Beta Was this translation helpful? Give feedback.
24 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nix copy --from
should copy the derivation to the nix store path, so you should be able to run/nix/store/.../bin/nvim
. There's no need fornix run
.