{ ... }: { boot = { kernelParams = [ # get an IP address on boot, so we can unlock the root disk remotely "ip=dhcp" # rotate the screen 90 degree counter clockwise "fbcon=rotate:1" ]; initrd = { # driver for the NIC, required in order to get an IP address kernelModules = [ "r8169" ]; }; }; my.system.boot = { initrd = { network.enable = true; }; }; }