nixfiles/home/base/ssh.nix

14 lines
300 B
Nix
Raw Normal View History

2021-12-29 13:17:01 +00:00
{ ... }: {
programs.ssh.enable = true;
programs.ssh.matchBlocks = {
2021-12-29 13:17:01 +00:00
"lappy" = {
user = "lappy.tailscale-internal.owo.monster";
hostname = "100.115.10.34";
};
"hetzner-vm" = {
user = "root";
hostname = "hetzner-vm.tailscale-internal.owo.monster";
};
};
}