nixos aws: use in-kernel ixgbevf driver (#58956)

wip/yesman
Peter Hoeg 5 years ago committed by Danylo Hlynskyi
parent dc525e8b12
commit 503ca1f40c
  1. 7
      nixos/modules/virtualisation/amazon-image.nix

@ -35,10 +35,9 @@ in
autoResize = true;
};
boot.extraModulePackages =
[ config.boot.kernelPackages.ixgbevf
config.boot.kernelPackages.ena
];
boot.extraModulePackages = [
config.boot.kernelPackages.ena
];
boot.initrd.kernelModules = [ "xen-blkfront" "xen-netfront" ];
boot.initrd.availableKernelModules = [ "ixgbevf" "ena" "nvme" ];
boot.kernelParams = mkIf cfg.hvm [ "console=ttyS0" ];

Loading…
Cancel
Save