diff options
| -rw-r--r-- | pkgs/krops/default.nix | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/pkgs/krops/default.nix b/pkgs/krops/default.nix index ab74bc3..184a12a 100644 --- a/pkgs/krops/default.nix +++ b/pkgs/krops/default.nix @@ -18,8 +18,11 @@ in      }";    runShell = target: command: -    if lib.isLocalTarget target -      then command +    let +      command' = if target.sudo then "sudo ${command}" else command; +    in +      if lib.isLocalTarget target +      then command'        else          writers.writeDash "krops.${target.host}.${lib.firstWord command}" ''            exec ${openssh}/bin/ssh ${lib.escapeShellArgs (lib.flatten [ @@ -28,7 +31,7 @@ in              "-T"              target.extraOptions              target.host -            (if target.sudo then "sudo ${command}" else command)])} +            command'])}          '';    writeCommand = name: { | 
