nix/modules/home/ssh.nix
2025-08-22 18:14:58 +02:00

15 lines
206 B
Nix

{ ... }:
{
programs.ssh = {
enable = true;
addKeysToAgent = "yes";
matchBlocks = {
"vps.dutch.1" = {
hostname = "192.71.151.141";
user = "root";
};
};
};
}