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

34 lines
686 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;
}];
};
};
};
2020-02-02 00:39:17 +01:00
home.file.result.text = builtins.toJSON
(map (a: a.message) (filter (a: !a.assertion) config.assertions));
nmt.script = ''
2020-02-02 00:39:17 +01:00
assertFileContent home-files/result ${
./forwards-paths-with-ports-error.json
}
'';
};
}