debug ssh

This commit is contained in:
2026-03-08 22:24:54 +01:00
parent 22337330e1
commit 60fe980797

View File

@@ -14,15 +14,18 @@
path = "${config.home.homeDirectory}/.ssh/extern"; path = "${config.home.homeDirectory}/.ssh/extern";
mode = "0600"; mode = "0600";
}; };
programs.ssh.matchBlocks = { programs.ssh = {
"intern" = { enable = true;
host = "*"; matchBlocks = {
identityFile = "${config.home.homeDirectory}/.ssh/intern"; "intern" = {
host = "*";
identityFile = "${config.home.homeDirectory}/.ssh/intern";
};
"extern" = {
host = "*";
identityFile = "${config.home.homeDirectory}/.ssh/extern";
};
}; };
"extern" = { };
host = "*";
identityFile = "${config.home.homeDirectory}/.ssh/extern";
};
};
}; };
} }