flake/home/applications/ssh/default.nix

14 lines
269 B
Nix
Raw Normal View History

{ 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-09-21 16:21:30 +00:00
"pek0.ny4.dev".hostname = "blacksteel";
};
2024-07-24 16:52:39 +00:00
};
}