From 042d9fb30edef5fa6fef42589194d9a2deae7ea8 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Fri, 15 Sep 2023 17:47:18 +0200 Subject: [PATCH] docs --- modules/fde-ssh-unlock.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/fde-ssh-unlock.nix b/modules/fde-ssh-unlock.nix index 38afd4c..466aa77 100644 --- a/modules/fde-ssh-unlock.nix +++ b/modules/fde-ssh-unlock.nix @@ -29,9 +29,15 @@ #boot.initrd.availableKernelModules = [ "r8169" ]; # TODO: This value is valid for yodaTux only boot.initrd.availableKernelModules = [ "e1000e" ]; # TODO: This value is valid for yodaYoga only # - # dmesg -> enp0s20f0u1u2: renamed from eth0 + # dmesg -> enp0s20f0u1u2: renamed from eth0 (yodaTux) + # dmesg -> enp0s31f6: renamed from eth0 (yodaYoga) #boot.kernelParams = [ "ip=:::::eth0:dhcp" ]; boot.kernelParams = [ "ip=dhcp" ]; + # Clear the configuration of the interfaces that were set up in the initrd right before stage 2 takes over. + # Stage 2 will do the regular network configuration based on the NixOS networking options. + # https://nixos.org/manual/nixos/stable/options#opt-boot.initrd.network.flushBeforeStage2 + #boot.initrd.network.flushBeforeStage2 = true; + # TODO: Timeout if no Internet connection is available (to be able to enter password with a keyboard). }