2019-08-20 13:20:39 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.ssh = {
|
|
|
|
enable = true;
|
|
|
|
matchBlocks = {
|
|
|
|
dynamicBindPathNoPort = {
|
2020-02-02 00:39:17 +01:00
|
|
|
dynamicForwards = [{
|
|
|
|
# OK:
|
|
|
|
address = "/run/user/1000/gnupg/S.gpg-agent.extra";
|
|
|
|
}];
|
2019-08-20 13:20:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
dynamicBindAddressWithPort = {
|
2020-02-02 00:39:17 +01:00
|
|
|
dynamicForwards = [{
|
|
|
|
# OK:
|
|
|
|
address = "127.0.0.1";
|
|
|
|
port = 3000;
|
|
|
|
}];
|
2019-08-20 13:20:39 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
home.file.result.text = builtins.toJSON
|
|
|
|
(map (a: a.message) (filter (a: !a.assertion) config.assertions));
|
2019-08-20 13:20:39 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.ssh/config
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.ssh/config \
|
|
|
|
${./forwards-dynamic-valid-bind-no-asserts-expected.conf}
|
|
|
|
assertFileContent home-files/result ${./no-assertions.json}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|