nix-dotfiles/users/richie/home/sshconfig.nix

27 lines
415 B
Nix
Raw Normal View History

2024-04-10 17:16:42 -04:00
{
config,
pkgs,
lib,
...
}:
{
programs.ssh = {
enable = true;
matchBlocks = {
jeeves = {
hostname = "192.168.90.40";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 629;
};
jeevesjr = {
hostname = "192.168.90.35";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 352;
};
};
};
}