mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
14 lines
320 B
Nix
14 lines
320 B
Nix
{ 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;
|
|
}
|