nixfiles/home/base/ssh.nix

14 lines
322 B
Nix
Raw Normal View History

{...}: {
programs.ssh.enable = true;
programs.ssh.matchBlocks = {
"lappy" = {
user = "lappy.tailscale-internal.owo.monster";
hostname = "100.115.10.34";
};
"hetzner-vm" = {
user = "root";
hostname = "hetzner-vm.tailscale-internal.owo.monster";
};
};
}