1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-29 09:58:32 +02:00
home-manager/tests/modules/programs/ssh/forwards-local-host-path-with-port-asserts.nix

27 lines
521 B
Nix
Raw Normal View History

{ 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;
2020-02-02 00:39:17 +01:00
# Error:
host.address = "/run/user/1000/gnupg/S.gpg-agent.extra";
host.port = 3000;
}];
};
};
};
test.asserts.assertions.expected = [ "Forwarded paths cannot have ports." ];
};
}