home-manager/tests/modules/programs/ssh/match-blocks-attrs.nix
Robert Helgesson 6bc07d4f53
ssh: add some basic tests
(cherry picked from commit 989e636d98)
2019-04-04 23:37:05 +02:00

35 lines
618 B
Nix

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