sftpman: add missing options
- `authType` is missing the `authentication-agent` enum value
- `mountDestPath` is missing completely
(cherry picked from commit 3351348827)
This commit is contained in:
parent
8c8a16d413
commit
82fb7dedaa
6 changed files with 32 additions and 0 deletions
|
|
@ -40,6 +40,12 @@ let
|
|||
description = "The remote path to mount.";
|
||||
};
|
||||
|
||||
mountDestPath = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = "The path on the current machine where the remote path would be mounted.";
|
||||
};
|
||||
|
||||
authType = mkOption {
|
||||
type = types.enum [
|
||||
"password"
|
||||
|
|
@ -47,6 +53,7 @@ let
|
|||
"hostbased"
|
||||
"keyboard-interactive"
|
||||
"gssapi-with-mic"
|
||||
"authentication-agent"
|
||||
];
|
||||
default = "publickey";
|
||||
description = "The authentication method to use.";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue