nixos/home/ssh/personal.nix

18 lines
328 B
Nix
Raw Normal View History

{ ... }:
{
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;
};
};
}