nixpkgs/modules/installer/cd-dvd/installation-cd-new-kernel.nix
Eelco Dolstra 6b6cee46c7 * By popular demand, provide an ISO with a more recent kernel.
svn path=/nixos/trunk/; revision=30344
2011-11-08 19:51:39 +00:00

9 lines
147 B
Nix

{ config, pkgs, ... }:
{
require = [ ./installation-cd-graphical.nix ];
boot.kernelPackages = pkgs.linuxPackages_3_0;
boot.vesa = false;
}