From 06ac96a7e126ca0f9a327eb83c05ad778600c63c Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Mon, 16 Oct 2023 19:06:53 +0200 Subject: [PATCH] add yodaHP --- assets/ssh/known_hosts | 3 +++ modules/ssh-client.nix | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/assets/ssh/known_hosts b/assets/ssh/known_hosts index 320088d..c9c8942 100644 --- a/assets/ssh/known_hosts +++ b/assets/ssh/known_hosts @@ -5,6 +5,9 @@ [192.168.178.27]:2223 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK0bfqbAh6E3sq82sg+ftcYLn7sPqCpPmPniL5Ey42Js [p1st.de]:2223 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK0bfqbAh6E3sq82sg+ftcYLn7sPqCpPmPniL5Ey42Js +# 2023-10 yodaHP with NixOS +192.168.178.108 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDy1mNvsCIyYW5rNkNcEUCGYlDdPUJ+SyzrASd+z8q2Z + # 2023-09 yodaTux NixOS early SSH FDE unlock [yodaTux.localhost]:22 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII1QKkJg9ekAAxTADCXIvHylrYOc6EdEyKUmKaQhaW3e diff --git a/modules/ssh-client.nix b/modules/ssh-client.nix index 3976d67..269f0a3 100644 --- a/modules/ssh-client.nix +++ b/modules/ssh-client.nix @@ -7,6 +7,12 @@ enable = true; userKnownHostsFile = "~/.ssh/known_hosts ${../assets/ssh/known_hosts}"; matchBlocks = { + "rootYodaHP" = { + hostname = "192.168.178.108"; + user = "root"; + port = 22; + compression = false; + }; "yodaTab" = { hostname = "192.168.178.33"; user = "yoda";