mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
e5b072eca1
This change adds an option to disable legacy BIOS boot support for ISO images. The implementation uses syslinux package that currently does not support non-x86 platforms and thus cannot be cross-compiled, e.g. from AArch64 system.
53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
# This module contains the basic configuration for building a NixOS
|
|
# installation CD.
|
|
|
|
{ config, lib, options, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports =
|
|
[ ./iso-image.nix
|
|
|
|
# Profiles of this basic installation CD.
|
|
../../profiles/all-hardware.nix
|
|
../../profiles/base.nix
|
|
../../profiles/installation-device.nix
|
|
];
|
|
|
|
# Adds terminus_font for people with HiDPI displays
|
|
console.packages = options.console.packages.default ++ [ pkgs.terminus_font ];
|
|
|
|
# ISO naming.
|
|
isoImage.isoName = "${config.isoImage.isoBaseName}-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso";
|
|
|
|
# BIOS booting
|
|
isoImage.makeBiosBootable = true;
|
|
|
|
# EFI booting
|
|
isoImage.makeEfiBootable = true;
|
|
|
|
# USB booting
|
|
isoImage.makeUsbBootable = true;
|
|
|
|
# Add Memtest86+ to the CD.
|
|
boot.loader.grub.memtest86.enable = true;
|
|
|
|
# An installation media cannot tolerate a host config defined file
|
|
# system layout on a fresh machine, before it has been formatted.
|
|
swapDevices = mkImageMediaOverride [ ];
|
|
fileSystems = mkImageMediaOverride config.lib.isoFileSystems;
|
|
|
|
boot.postBootCommands = ''
|
|
for o in $(</proc/cmdline); do
|
|
case "$o" in
|
|
live.nixos.passwd=*)
|
|
set -- $(IFS==; echo $o)
|
|
echo "nixos:$2" | ${pkgs.shadow}/bin/chpasswd
|
|
;;
|
|
esac
|
|
done
|
|
'';
|
|
|
|
system.stateVersion = lib.mkDefault lib.trivial.release;
|
|
}
|