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";
mode = "0600";
};
programs.ssh.matchBlocks = {
"intern" = {
host = "*";
identityFile = "${config.home.homeDirectory}/.ssh/intern";
programs.ssh = {
enable = true;
matchBlocks = {
"intern" = {
host = "*";
identityFile = "${config.home.homeDirectory}/.ssh/intern";
};
"extern" = {
host = "*";
identityFile = "${config.home.homeDirectory}/.ssh/extern";
};
};
"extern" = {
host = "*";
identityFile = "${config.home.homeDirectory}/.ssh/extern";
};
};
};
};
}