nix-dotfiles/programs/ssh.nix

17 lines
420 B
Nix
Raw Normal View History

{
programs.ssh = {
enable = true;
matchBlocks = {
"sherbrooke" = {
hostname = "100.119.100.64";
user = "vorboyvo";
};
"souligny" = {
hostname = "100.89.207.70";
user = "ubuntu";
identityFile = "~/.ssh/ssh-key-2024-04-12.key"; # supply this manually
};
};
};
}