normcap: fix on GNOME wayland when used via keybind or alt-f2 (#351763)
[NixPkgs.git] / nixos / modules / installer / cd-dvd / installation-cd-minimal.nix
blob8f019d3d80ac8d6b12c2a3adc806f6c3d07bd04b
1 # This module defines a small NixOS installation CD.  It does not
2 # contain any graphical stuff.
4 { lib, ... }:
7   imports = [
8     ../../profiles/minimal.nix
9     ./installation-cd-base.nix
10   ];
12   documentation.man.enable = lib.mkOverride 500 true;
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;
18   fonts.fontconfig.enable = lib.mkOverride 500 false;
20   isoImage.edition = lib.mkOverride 500 "minimal";