Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions deploy_nixos/nixos-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ log() {
}

copyToTarget() {
NIX_SSHOPTS="${sshOpts[*]}" nix-copy-closure --to "$targetHost" "$@"
NIX_SSHOPTS="${sshOpts[*]}" nix --extra-experimental-features nix-command copy --to "ssh://$targetHost" "$@" --derivation --no-check-sigs
}

# assumes that passwordless sudo is enabled on the server
Expand Down Expand Up @@ -101,7 +101,7 @@ if [[ "${buildOnTarget:-false}" == true ]]; then

# Upload derivation
log "uploading derivations"
copyToTarget "$drvPath" --gzip --use-substitutes
copyToTarget "$drvPath"

# Build remotely
log "building on target"
Expand All @@ -116,7 +116,7 @@ else

# Upload build results
log "uploading build results"
copyToTarget "$outPath" --gzip --use-substitutes
copyToTarget "$outPath"

fi

Expand Down