nixpkgs/modules/installer/cd-dvd/installation-cd-new-kernel.nix
Lluís Batlle i Rossell dacd7d5a58 Setting iso_new_kernel to use linux 3.7.
It was using 3.2, the same kernel as the other isos.
2012-12-16 16:05:50 +01:00

9 lines
147 B
Nix

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