1# This module defines a small NixOS installation CD. It does not
2# contain any graphical stuff.
3
4{ lib, ... }:
5
6{
7 imports = [
8 ../../profiles/minimal.nix
9 ./installation-cd-base.nix
10 ];
11
12 documentation.man.enable = lib.mkOverride 500 true;
13
14 # Although we don't really need HTML documentation in the minimal installer,
15 # not including it may cause annoying cache misses in the case of the NixOS manual.
16 documentation.doc.enable = lib.mkOverride 500 true;
17
18 fonts.fontconfig.enable = lib.mkOverride 500 false;
19
20 isoImage.edition = lib.mkOverride 500 "minimal";
21}