2024-08-25 15:02:35 +00:00
|
|
|
{ config, ... }:
|
|
|
|
{
|
2024-07-24 16:52:39 +00:00
|
|
|
programs.ssh = {
|
|
|
|
enable = true;
|
2024-09-21 16:21:30 +00:00
|
|
|
matchBlocks = {
|
|
|
|
"*.ny4.dev" = {
|
|
|
|
identityFile = "${config.home.homeDirectory}/.ssh/id_github_signing";
|
|
|
|
user = "root";
|
2024-08-25 15:02:35 +00:00
|
|
|
};
|
2024-09-21 16:21:30 +00:00
|
|
|
"pek0.ny4.dev".hostname = "blacksteel";
|
|
|
|
};
|
2024-07-24 16:52:39 +00:00
|
|
|
};
|
|
|
|
}
|