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/match-blocks-attrs.nix
2019-08-20 12:11:00 +02:00

42 lines
790 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.ssh = {
enable = true;
matchBlocks = {
abc = {
identityFile = null;
proxyJump = "jump-host";
};
xyz = {
identityFile = "file";
serverAliveInterval = 60;
localForwards = [
{
bind.port = 8080;
host.address = "10.0.0.1";
host.port = 80;
}
];
};
"* !github.com" = {
identityFile = ["file1" "file2"];
port = 516;
};
};
};
nmt.script = ''
assertFileExists home-files/.ssh/config
assertFileContent \
home-files/.ssh/config \
${./match-blocks-attrs-expected.conf}
'';
};
}