summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/installation-cd-efi.nix
blob: 4aa788feeae5c9eac41c7ef9d12c09c6c5a55827 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:

{
  # Move into base image once using 3.10 or later

  require = [ ./installation-cd-minimal.nix ];

  boot.kernelPackages = pkgs.linuxPackages_3_10;

  # Get a console as soon as the initrd loads fbcon on EFI boot
  boot.initrd.kernelModules = [ "fbcon" ];

  isoImage.makeEfiBootable = true;
}