From 556a4a7951a80bb73f395aedd105ffe80329fadb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Na=C3=AFm=20Favier?= Date: Mon, 16 Jan 2023 10:07:57 +0100 Subject: [PATCH] nixos/installation-cd-minimal: include HTML doc 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. --- nixos/modules/installer/cd-dvd/installation-cd-minimal.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix b/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix index 7a3bd74cb70a..29afdd471091 100644 --- a/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix +++ b/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix @@ -14,6 +14,10 @@ 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.mkForce false; isoImage.edition = lib.mkForce "minimal";