sftpman: add missing options

- `authType` is missing the `authentication-agent` enum value
- `mountDestPath` is missing completely
This commit is contained in:
Michael Strobel
2026-01-08 12:05:23 +01:00
committed by Austin Horstman
parent 7688293f06
commit 3351348827
6 changed files with 32 additions and 0 deletions

View File

@@ -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.";