From f07e16817f6f368f44e4529fe0fd77ac528e3fb0 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 11 Oct 2023 11:08:29 +0200 Subject: [PATCH] ssh client config --- assets/ssh/known_hosts | 3 +++ modules/ssh-client.nix | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/assets/ssh/known_hosts b/assets/ssh/known_hosts index caa3ae9..320088d 100644 --- a/assets/ssh/known_hosts +++ b/assets/ssh/known_hosts @@ -21,6 +21,9 @@ fckjpbxxim36c1gb.myfritz.net ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIhyhbuidl8RIV6 # 2023-08 yodaTab with NixOS 192.168.178.33 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEuZRtE5auwSJLcdR3mu+5JxG8jW8wwy2kEiIbE8nqNW +# 2023-10 enchilada wiht postmarketOS +192.168.178.100 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFFJ6vFjKMP/gT4MwqH/9CEwkrxKl1MQwwdAlrPemqqy + # 2019-03 ejNas with Arch Linux cloud.ej-altdorf.de ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN4sPst5MT46Umwnz9bQCeT6M/gTM8urKqYHMY9lWBux diff --git a/modules/ssh-client.nix b/modules/ssh-client.nix index d55d410..3976d67 100644 --- a/modules/ssh-client.nix +++ b/modules/ssh-client.nix @@ -11,7 +11,13 @@ hostname = "192.168.178.33"; user = "yoda"; port = 22; - compression = true; + compression = false; + }; + "enchilada" = { + hostname = "192.168.178.100"; + user = "yoda"; + port = 22; + compression = false; }; # local IP: 192.168.178.99