18 lines
328 B
Nix
18 lines
328 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [ ./common.nix ];
|
||
|
programs.ssh.matchBlocks = {
|
||
|
"legion xenia xenia.me.uk" = {
|
||
|
user = "xenia";
|
||
|
hostname = "xenia.me.uk";
|
||
|
port = 30;
|
||
|
forwardAgent = true;
|
||
|
};
|
||
|
"vanguard" = {
|
||
|
user = "xenia";
|
||
|
hostname = "192.168.1.166";
|
||
|
forwardAgent = true;
|
||
|
};
|
||
|
};
|
||
|
}
|