mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
Compare commits
6 Commits
c253191f43
...
release-25
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
82fb7dedaa | ||
|
|
8c8a16d413 | ||
|
|
c08430923e | ||
|
|
6bd04da47c | ||
|
|
7a06e8a2f8 | ||
|
|
d49d2543f0 |
6
flake.lock
generated
6
flake.lock
generated
@@ -2,11 +2,11 @@
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1766736597,
|
||||
"narHash": "sha256-BASnpCLodmgiVn0M1MU2Pqyoz0aHwar/0qLkp7CjvSQ=",
|
||||
"lastModified": 1767799921,
|
||||
"narHash": "sha256-r4GVX+FToWVE2My8VVZH4V0pTIpnu2ZE8/Z4uxGEMBE=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "f560ccec6b1116b22e6ed15f4c510997d99d5852",
|
||||
"rev": "d351d0653aeb7877273920cd3e823994e7579b0b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
||||
@@ -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.";
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
{
|
||||
source = realPkgs.fetchurl {
|
||||
url = "https://keys.openpgp.org/pks/lookup?op=get&options=mr&search=0x44CF42371ADF842E12F116EAA9D3F98FCCF5460B";
|
||||
hash = "sha256-bSluCZh6ijwppigk8iF2BwWKZgq1WDbIjyYQRK772dM=";
|
||||
hash = "sha256-csrFDI6QSPfNN+adOPEAupAtspYNBCybFZExvVS+vRY=";
|
||||
};
|
||||
trust = 1; # "unknown"
|
||||
}
|
||||
|
||||
@@ -23,6 +23,13 @@
|
||||
user = "user";
|
||||
sshKey = "/home/user/.ssh/id_rsa";
|
||||
};
|
||||
mount4 = {
|
||||
host = "host4.example.com";
|
||||
mountPoint = "/another/path/somewhere/else";
|
||||
user = "user";
|
||||
authType = "authentication-agent";
|
||||
mountDestPath = "/mnt/host4";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -36,5 +43,8 @@
|
||||
assertFileContent \
|
||||
home-files/.config/sftpman/mounts/mount3.json \
|
||||
${./expected-mount3.json}
|
||||
assertFileContent \
|
||||
home-files/.config/sftpman/mounts/mount4.json \
|
||||
${./expected-mount4.json}
|
||||
'';
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"beforeMount": "true",
|
||||
"host": "host1.example.com",
|
||||
"id": "mount1",
|
||||
"mountDestPath": null,
|
||||
"mountOptions": [
|
||||
"idmap=user"
|
||||
],
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"beforeMount": "true",
|
||||
"host": "host2.example.com",
|
||||
"id": "mount2",
|
||||
"mountDestPath": null,
|
||||
"mountOptions": [],
|
||||
"mountPoint": "/another/path",
|
||||
"port": 22,
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"beforeMount": "true",
|
||||
"host": "host3.example.com",
|
||||
"id": "mount3",
|
||||
"mountDestPath": null,
|
||||
"mountOptions": [],
|
||||
"mountPoint": "/yet/another/path",
|
||||
"port": 22,
|
||||
|
||||
12
tests/modules/programs/sftpman/expected-mount4.json
Normal file
12
tests/modules/programs/sftpman/expected-mount4.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"authType": "authentication-agent",
|
||||
"beforeMount": "true",
|
||||
"host": "host4.example.com",
|
||||
"id": "mount4",
|
||||
"mountDestPath": "/mnt/host4",
|
||||
"mountOptions": [],
|
||||
"mountPoint": "/another/path/somewhere/else",
|
||||
"port": 22,
|
||||
"sshKey": "/home/user/.ssh/id_ed25519",
|
||||
"user": "user"
|
||||
}
|
||||
Reference in New Issue
Block a user