2023-05-05 13:29:39 +01:00
|
|
|
{ ... }:
|
|
|
|
{
|
|
|
|
imports = [ ./common.nix ];
|
|
|
|
programs.ssh.matchBlocks = {
|
|
|
|
"legion xenia xenia.me.uk" = {
|
2023-05-09 17:56:18 +01:00
|
|
|
user = "root";
|
2023-05-05 13:29:39 +01:00
|
|
|
hostname = "xenia.me.uk";
|
|
|
|
port = 30;
|
|
|
|
forwardAgent = true;
|
|
|
|
};
|
|
|
|
"vanguard" = {
|
2023-05-09 17:56:18 +01:00
|
|
|
user = "root";
|
2023-05-05 13:29:39 +01:00
|
|
|
hostname = "192.168.1.166";
|
|
|
|
forwardAgent = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|