2019-08-20 13:20:39 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.ssh = {
|
|
|
|
enable = true;
|
|
|
|
matchBlocks = {
|
|
|
|
localHostPathWithPort = {
|
2020-02-02 00:39:17 +01:00
|
|
|
localForwards = [{
|
|
|
|
# OK:
|
|
|
|
bind.address = "127.0.0.1";
|
|
|
|
bind.port = 3000;
|
2019-08-20 13:20:39 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
# Error:
|
|
|
|
host.address = "/run/user/1000/gnupg/S.gpg-agent.extra";
|
|
|
|
host.port = 3000;
|
|
|
|
}];
|
2019-08-20 13:20:39 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-02-07 21:52:16 +01:00
|
|
|
test.asserts.assertions.expected = [ "Forwarded paths cannot have ports." ];
|
2019-08-20 13:20:39 +02:00
|
|
|
};
|
|
|
|
}
|