lol

Blacklist the xen_fbfront kernel module

This gets rid of a 30 second delay during boot. See e.g
https://github.com/coreos/bugs/issues/208.

+3 -1
+3 -1
nixos/modules/virtualisation/amazon-image.nix
··· 26 26 27 27 # Prevent the nouveau kernel module from being loaded, as it 28 28 # interferes with the nvidia/nvidia-uvm modules needed for CUDA. 29 - boot.blacklistedKernelModules = [ "nouveau" ]; 29 + # Also blacklist xen_fbfront to prevent a 30 second delay during 30 + # boot. 31 + boot.blacklistedKernelModules = [ "nouveau" "xen_fbfront" ]; 30 32 31 33 # Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd. 32 34 boot.loader.grub.version = if cfg.hvm then 2 else 1;