Home Explore Blog CI



nix

1st chunk of `src/nix/copy.md`
a909616a1a36f3bef30e662f18e2c52d1a2851ae81a686ec00000001000007ea
R""(

# Examples

* Copy Firefox from the local store to a binary cache in `/tmp/cache`:

  ```console
  # nix copy --to file:///tmp/cache $(type -p firefox)
  ```

  Note the `file://` - without this, the destination is a chroot
  store, not a binary cache.

* Copy all store paths from a local binary cache in `/tmp/cache` to the local store:

  ```console
  # nix copy --all --from file:///tmp/cache
  ```

* Copy the entire current NixOS system closure to another machine via
  SSH:

  ```console
  # nix copy --substitute-on-destination --to ssh://server /run/current-system
  ```

  The `-s` flag causes the remote machine to try to substitute missing
  store paths, which may be faster if the link between the local and
  remote machines is slower than the link between the remote machine
  and its substituters (e.g. `https://cache.nixos.org`).

* Copy a closure from another machine via SSH:

  ```console
  # nix copy --from ssh://server /nix/store/a6cnl93nk1wxnq84brbbwr6hxw9gp2w9-blender-2.79-rc2
  ```

* Copy Hello to a binary cache in an Amazon S3 bucket:

  ```console
  # nix copy --to s3://my-bucket?region=eu-west-1 nixpkgs#hello
  ```

  or to an S3-compatible storage system:

  ```console
  # nix copy --to s3://my-bucket?region=eu-west-1&endpoint=example.com nixpkgs#hello
  ```

  Note that this only works if Nix is built with AWS support.

* Copy a closure from `/nix/store` to the chroot store `/tmp/nix/nix/store`:

  ```console
  # nix copy --to /tmp/nix nixpkgs#hello --no-check-sigs
  ```

* Update the NixOS system profile to point to a closure copied from a
  remote machine:

  ```console
  # nix copy --from ssh://server \
      --profile /nix/var/nix/profiles/system \
      /nix/store/r14v3km89zm3prwsa521fab5kgzvfbw4-nixos-system-foobar-24.05.20240925.759537f
  ```

# Description

`nix copy` copies store path closures between two Nix stores. The
source store is specified using `--from` and the destination using
`--to`. If one of these is omitted, it defaults to the local store.

)""

Title: Examples and Description of `nix copy` Command
Summary
The text provides several examples of using the `nix copy` command to transfer store path closures between Nix stores. It demonstrates copying from local stores, binary caches (local and S3), and remote machines via SSH. The `--from` and `--to` flags specify the source and destination stores, respectively, defaulting to the local store if omitted. It also touches on updating system profiles with copied closures.