dotfiles/home/programs/ssh/shared/work.nix

28 lines
537 B
Nix
Raw Normal View History

2022-08-08 21:43:47 +00:00
{ secret, ... }:
{
matchBlocks = {
"git.app.nedeco.de" = {
2024-03-25 20:54:24 +00:00
port = 22;
2022-08-08 21:43:47 +00:00
user = "git";
identityFile = "~/.ssh/nedeco_gitlab.pub";
identitiesOnly = true;
compression = true;
};
"msc.nedeco.local" = {
port = 22;
user = "root";
identityFile = "~/.ssh/nedeco.pub";
identitiesOnly = true;
};
2023-09-01 22:44:51 +00:00
"192.168.8.141" = {
port = 22;
user = "root";
identityFile = "~/.ssh/nedeco.pub";
identitiesOnly = true;
};
2022-08-08 21:43:47 +00:00
} // secret.ssh.matchBlocks.work;
}