nix-config/home/ssh.nix

14 lines
No EOL
239 B
Nix

{ config, age, ... }:
{
programs.ssh = {
enable = true;
matchBlocks = {
"1bvps" = {
host = "1bvps";
hostname = "178.254.43.196";
identityFile = [ "/home/rhea/.ssh/id_1bvps" ];
};
};
};
}