Merge pull request #11530 from Mic92/flake-archive

This commit is contained in:
Valentin Gagarin 2024-09-18 20:58:06 +02:00 committed by GitHub
commit 0f5c37c242
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,8 +22,20 @@ R""(
# nix flake archive --json --dry-run nixops
```
* Upload all flake inputs to a different machine for remote evaluation
```
# nix flake archive --to ssh://some-machine
```
On the remote machine the flake can then be accessed via its store path. That's computed like this:
```
# nix flake metadata --json | jq -r '.path'
```
# Description
FIXME
Copy a flake and all its inputs to a store. This is useful i.e. to evaluate flakes on a different host.
)""