diff --git a/assets/ssh/known_hosts b/assets/ssh/known_hosts index 2dba549..31875d1 100644 --- a/assets/ssh/known_hosts +++ b/assets/ssh/known_hosts @@ -1,5 +1,8 @@ # 2022-12 yodaNas with Arch Linux -[p1st.de]:2222 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIASF7AJeGIkQG0erOJym8bHLBjRClkdPPCDNZAKOZ6S+ +#[p1st.de]:2222 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIASF7AJeGIkQG0erOJym8bHLBjRClkdPPCDNZAKOZ6S+ + +# 2023-09 yodaNas with NixOS +192.168.178.27 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHalprb0uOHjvchbyU5dV/qpRqMs8tkQCGZ3O4K9+DMH # 2023-09 yodaTux NixOS early SSH FDE unlock [yodaTux.localhost]:22 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII1QKkJg9ekAAxTADCXIvHylrYOc6EdEyKUmKaQhaW3e diff --git a/modules/fde-ssh-unlock.nix b/modules/fde-ssh-unlock.nix index 3811535..0f54230 100644 --- a/modules/fde-ssh-unlock.nix +++ b/modules/fde-ssh-unlock.nix @@ -37,7 +37,7 @@ boot.initrd.availableKernelModules = ( if (config.networking.hostName == "yodaTux") then [ "r8169" ] - else if (config.networking.hostName == "yodaYoga") + else if (config.networking.hostName == "yodaYoga") || (config.networking.hostName == "yodaNas") then [ "e1000e" ] else throw "Please add kernel module of networ card here" );