1
0
Fork 0
dotfiles/home/programs/ssh/shared/private.nix

90 lines
1.9 KiB
Nix
Raw Normal View History

2022-08-08 21:43:47 +00:00
{
matchBlocks = {
"github.com" = {
port = 22;
user = "git";
identityFile = "~/.ssh/GitHub.pub";
identitiesOnly = true;
compression = true;
};
"gitlab.com" = {
port = 22;
user = "git";
identityFile = "~/.ssh/GitLab.pub";
identitiesOnly = true;
compression = true;
};
2023-09-11 22:05:25 +00:00
"git.kempkens.io" = {
port = 22;
user = "gitea";
identityFile = "~/.ssh/GitHub.pub";
identitiesOnly = true;
compression = true;
};
2022-08-08 21:43:47 +00:00
"router" = {
hostname = "10.0.0.1";
port = 22;
user = "root";
extraOptions = {
PreferredAuthentications = "password";
};
};
"nas" = {
hostname = "10.0.0.100";
port = 22;
user = "daniel";
identityFile = "~/.ssh/LAN.pub";
identitiesOnly = true;
};
2023-06-14 19:55:35 +00:00
"adsb-antenna" = {
hostname = "adsb-antenna.laniot";
2022-08-08 21:43:47 +00:00
port = 22;
2023-06-14 19:55:35 +00:00
user = "daniel";
forwardAgent = true;
2022-08-08 21:43:47 +00:00
identityFile = "~/.ssh/LAN.pub";
identitiesOnly = true;
};
2023-06-14 19:55:35 +00:00
"weather-sdr" = {
hostname = "weather-sdr.laniot";
2022-08-08 21:43:47 +00:00
port = 22;
user = "daniel";
forwardAgent = true;
identityFile = "~/.ssh/LAN.pub";
identitiesOnly = true;
};
"tanker" = {
hostname = "tanker.ts.kempkens.network";
port = 22;
user = "daniel";
forwardAgent = true;
identityFile = "~/.ssh/Hetzner.pub";
identitiesOnly = true;
};
2023-04-13 16:53:40 +00:00
"mediaserver" = {
hostname = "mediaserver.ts.kempkens.network";
port = 22;
user = "daniel";
forwardAgent = true;
identityFile = "~/.ssh/LAN.pub";
identitiesOnly = true;
};
2023-06-07 18:40:27 +00:00
"argon" = {
hostname = "argon.ts.kempkens.network";
port = 22;
user = "daniel";
forwardAgent = true;
identityFile = "~/.ssh/LAN.pub";
identitiesOnly = true;
};
2022-08-08 21:43:47 +00:00
};
}