add yodaNas [WIP]

This commit is contained in:
Daniel Langbein 2023-09-26 18:29:38 +02:00
parent ba52540f6c
commit 4494517242
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
# 2022-12 yodaNas with Arch Linux # 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 # 2023-09 yodaTux NixOS early SSH FDE unlock
[yodaTux.localhost]:22 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII1QKkJg9ekAAxTADCXIvHylrYOc6EdEyKUmKaQhaW3e [yodaTux.localhost]:22 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII1QKkJg9ekAAxTADCXIvHylrYOc6EdEyKUmKaQhaW3e

View File

@ -37,7 +37,7 @@
boot.initrd.availableKernelModules = ( boot.initrd.availableKernelModules = (
if (config.networking.hostName == "yodaTux") if (config.networking.hostName == "yodaTux")
then [ "r8169" ] then [ "r8169" ]
else if (config.networking.hostName == "yodaYoga") else if (config.networking.hostName == "yodaYoga") || (config.networking.hostName == "yodaNas")
then [ "e1000e" ] then [ "e1000e" ]
else throw "Please add kernel module of networ card here" else throw "Please add kernel module of networ card here"
); );