2012-03-16 12:22:05 +01:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2013-10-09 17:44:50 +02:00
|
|
|
# Move into base image once using 3.10 or later
|
2012-03-16 12:22:05 +01:00
|
|
|
|
2013-10-09 17:44:50 +02:00
|
|
|
require = [ ./installation-cd-minimal.nix ];
|
2012-03-16 12:22:05 +01:00
|
|
|
|
2013-10-09 17:44:50 +02:00
|
|
|
boot.kernelPackages = pkgs.linuxPackages_3_10;
|
2012-03-16 12:22:05 +01:00
|
|
|
|
|
|
|
# Get a console as soon as the initrd loads fbcon on EFI boot
|
2013-10-09 17:44:50 +02:00
|
|
|
boot.initrd.kernelModules = [ "fbcon" ];
|
2012-03-16 12:22:05 +01:00
|
|
|
|
|
|
|
isoImage.makeEfiBootable = true;
|
|
|
|
}
|