2019-03-19 23:00:17 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.ssh = {
|
|
|
|
enable = true;
|
|
|
|
matchBlocks = {
|
|
|
|
abc = {
|
|
|
|
identityFile = null;
|
|
|
|
proxyJump = "jump-host";
|
|
|
|
};
|
|
|
|
|
2020-04-13 22:02:08 +02:00
|
|
|
ordered = hm.dag.entryAfter [ "xyz" ] { port = 1; };
|
|
|
|
|
2019-03-19 23:00:17 +01:00
|
|
|
xyz = {
|
|
|
|
identityFile = "file";
|
|
|
|
serverAliveInterval = 60;
|
2020-06-01 16:50:34 +02:00
|
|
|
serverAliveCountMax = 10;
|
2020-02-02 00:39:17 +01:00
|
|
|
localForwards = [{
|
|
|
|
bind.port = 8080;
|
|
|
|
host.address = "10.0.0.1";
|
|
|
|
host.port = 80;
|
|
|
|
}];
|
2019-08-20 13:20:39 +02:00
|
|
|
remoteForwards = [
|
|
|
|
{
|
|
|
|
bind.port = 8081;
|
|
|
|
host.address = "10.0.0.2";
|
|
|
|
host.port = 80;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
bind.address = "/run/user/1000/gnupg/S.gpg-agent.extra";
|
|
|
|
host.address = "/run/user/1000/gnupg/S.gpg-agent";
|
|
|
|
}
|
|
|
|
];
|
2020-02-02 00:39:17 +01:00
|
|
|
dynamicForwards = [{ port = 2839; }];
|
2023-05-11 14:22:40 +02:00
|
|
|
setEnv = {
|
|
|
|
FOO = "foo12";
|
|
|
|
BAR = "_bar_ 42";
|
|
|
|
};
|
2019-03-19 23:00:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
"* !github.com" = {
|
2020-02-02 00:39:17 +01:00
|
|
|
identityFile = [ "file1" "file2" ];
|
2019-03-19 23:00:17 +01:00
|
|
|
port = 516;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
home.file.assertions.text = builtins.toJSON
|
|
|
|
(map (a: a.message) (filter (a: !a.assertion) config.assertions));
|
2019-08-20 13:20:39 +02:00
|
|
|
|
2019-03-19 23:00:17 +01:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileExists home-files/.ssh/config
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.ssh/config \
|
|
|
|
${./match-blocks-attrs-expected.conf}
|
2019-08-20 13:20:39 +02:00
|
|
|
assertFileContent home-files/assertions ${./no-assertions.json}
|
2019-03-19 23:00:17 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|