From bd095e2020ac5f0086469cc6ec325cbce4f78790 Mon Sep 17 00:00:00 2001 From: Manuel Hutter Date: Wed, 10 Jan 2024 11:00:12 +0100 Subject: [PATCH] deploy-rs: Disable SSH multiplexing See: https://github.com/serokell/deploy-rs/issues/226 Signed-off-by: Manuel Hutter --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 5b97fc7..b7e1034 100644 --- a/flake.nix +++ b/flake.nix @@ -31,6 +31,8 @@ hostname = "rhea"; sshUser = "root"; remoteBuild = true; + # See: https://github.com/serokell/deploy-rs/issues/226 + sshOpts = [ "-oControlMaster=no" "-oControlPath=/dev/null" ]; profiles.system = { path = deploy-rs.lib.x86_64-linux.activate.nixos self.nixosConfigurations.rhea;