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";