nixos/home/lilith/ssh.nix
2025-05-21 14:17:33 +02:00

40 lines
719 B
Nix

{ ... }:
{
services.ssh-agent.enable = true;
programs.ssh = {
enable = true;
matchBlocks = {
"hpc" = {
user = "benstem";
hostname = "login1.hpc.uni-potsdam.de";
};
"lilith-lab" = {
user = "lilith";
hostname = "nixserver";
};
"lilith-server" = {
user = "lilith";
hostname = "firelilith.org";
};
"lilith-server-builder" = {
user = "nixremote";
hostname = "firelilith.org";
};
"lilith-pc-builder" = {
user = "nixremote";
hostname = "lilith-pc";
};
"lilith-pad-builder" = {
user = "nixremote";
hostname = "lilith-pad";
};
};
};
}