depot/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

21 lines
580 B
Nix

# This module defines a small NixOS installation CD. It does not
# contain any graphical stuff.
{ lib, ... }:
{
imports = [
../../profiles/minimal.nix
./installation-cd-base.nix
];
documentation.man.enable = lib.mkOverride 500 true;
# Although we don't really need HTML documentation in the minimal installer,
# not including it may cause annoying cache misses in the case of the NixOS manual.
documentation.doc.enable = lib.mkOverride 500 true;
fonts.fontconfig.enable = lib.mkOverride 500 false;
isoImage.edition = lib.mkOverride 500 "minimal";
}