From eecf8fa94ee311608f5bd560d3de14f14fef4b00 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Tue, 21 Dec 2021 01:07:31 -0500 Subject: [PATCH] morph: remove ssh package --- lib/morph.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/morph.nix b/lib/morph.nix index 58c001d..99d82aa 100644 --- a/lib/morph.nix +++ b/lib/morph.nix @@ -111,10 +111,5 @@ in NIX_SSHOPTS="-F${sshConfig}" nix copy --to ssh://root@$ip ${self} exec ssh -oForwardAgent=yes -F"${sshConfig}" "$ip" -t "cd ${self}; nix develop" ''; - ssh = sh '' - ip="$(nix eval --raw ".#nixosConfigurations.\"$1\".config.sconfig.morph.deployment.targetHost")" - shift - exec ssh -F"${sshConfig}" "$ip" "$@" - ''; }; }