mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
35 lines
618 B
Nix
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}
|
||
|
'';
|
||
|
};
|
||
|
}
|