2009-06-11 09:51:27 +00:00
|
|
|
# This module contains the basic configuration for building a NixOS
|
|
|
|
# installation CD.
|
2009-06-05 15:10:15 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-11-10 21:42:38 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2009-06-05 15:10:15 +00:00
|
|
|
|
|
|
|
{
|
2013-09-04 11:05:09 +00:00
|
|
|
imports =
|
2015-06-10 10:04:26 +00:00
|
|
|
[ ./iso-image.nix
|
2010-09-25 09:32:43 +00:00
|
|
|
|
|
|
|
# Profiles of this basic installation CD.
|
2011-11-08 15:58:59 +00:00
|
|
|
../../profiles/all-hardware.nix
|
2010-09-25 09:32:27 +00:00
|
|
|
../../profiles/base.nix
|
2010-09-25 09:32:43 +00:00
|
|
|
../../profiles/installation-device.nix
|
2009-06-09 13:14:43 +00:00
|
|
|
];
|
2009-06-05 15:10:15 +00:00
|
|
|
|
2009-06-09 15:23:03 +00:00
|
|
|
# ISO naming.
|
2018-08-20 19:11:29 +00:00
|
|
|
isoImage.isoName = "${config.isoImage.isoBaseName}-${config.system.nixos.label}-${pkgs.stdenv.hostPlatform.system}.iso";
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2014-06-05 20:51:43 +00:00
|
|
|
isoImage.volumeID = substring 0 11 "NIXOS_ISO";
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2013-11-01 15:29:36 +00:00
|
|
|
# EFI booting
|
|
|
|
isoImage.makeEfiBootable = true;
|
|
|
|
|
2014-10-26 20:29:04 +00:00
|
|
|
# USB booting
|
|
|
|
isoImage.makeUsbBootable = true;
|
|
|
|
|
2013-10-02 10:29:07 +00:00
|
|
|
# Add Memtest86+ to the CD.
|
2014-01-21 16:25:49 +00:00
|
|
|
boot.loader.grub.memtest86.enable = true;
|
2013-11-01 15:29:36 +00:00
|
|
|
|
2018-07-25 20:22:54 +00:00
|
|
|
system.stateVersion = mkDefault "18.03";
|
2009-06-05 15:10:15 +00:00
|
|
|
}
|