From 099c44acbffe7960eee797b07d923a1c53ec2dcd Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Sat, 7 May 2022 23:31:58 +0200 Subject: [PATCH] ssh: Add some aliases --- programs/ssh.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/programs/ssh.nix b/programs/ssh.nix index da3faa3..62e62c5 100644 --- a/programs/ssh.nix +++ b/programs/ssh.nix @@ -69,7 +69,22 @@ in user = "daniel"; identityFile = "~/.ssh/LAN.pub"; identitiesOnly = true; - compression = true; + }; + + "haven" = { + hostname = "100.101.243.36"; + port = 22; + user = "daniel"; + identityFile = "~/.ssh/LAN.pub"; + identitiesOnly = true; + }; + + "webboat" = { + hostname = "100.99.89.98"; + port = 20022; + user = "root"; + identityFile = "~/.ssh/Hetzner.pub"; + identitiesOnly = true; }; };