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

42 lines
991 B
Nix
Raw Normal View History

2024-04-10 17:16:42 -04:00
{
programs.ssh = {
enable = true;
matchBlocks = {
jeeves = {
hostname = "192.168.90.40";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 629;
2024-06-19 19:17:07 -04:00
dynamicForwards = [ { port = 9050; } ];
2024-04-10 17:16:42 -04:00
};
jeevesjr = {
hostname = "192.168.90.35";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 352;
2024-06-19 19:17:07 -04:00
dynamicForwards = [ { port = 9050; } ];
2024-04-10 17:16:42 -04:00
};
2024-06-01 10:51:37 -04:00
bob = {
hostname = "192.168.90.25";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 262;
2024-06-19 19:17:07 -04:00
dynamicForwards = [ { port = 9050; } ];
2024-06-01 10:51:37 -04:00
};
2024-06-09 11:34:55 -04:00
rhapsody-in-green = {
hostname = "192.168.90.221";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 922;
};
2024-08-11 09:28:36 -04:00
palatine-hill = {
hostname = "192.168.76.2";
user = "richie";
identityFile = "~/.ssh/id_ed25519";
port = 666;
};
2024-04-10 17:16:42 -04:00
};
};
}