diff --git a/deployer/nix.ts b/deployer/nix.ts index 7f7306c..d795610 100644 --- a/deployer/nix.ts +++ b/deployer/nix.ts @@ -131,7 +131,7 @@ namespace nix { }) export const copy = dedupe(async (attrs: string[], target: SSH): Promise => { process.env.NIX_SSHOPTS = "-o compression=no"; - await $`nix copy ${attrs} --to ssh://${target.host}` + await $`nix copy ${attrs} -s --to ssh://${target.host}` return Array(attrs.length) }) }