nixpkgs/modules/installer/cd-dvd/installation-cd-new-kernel.nix
Lluís Batlle i Rossell 0b8e992d3d Setting the kernel 3.2 for the new-kernel nixos iso.
svn path=/nixos/trunk/; revision=32785
2012-03-04 21:01:20 +00:00

9 lines
147 B
Nix

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