1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-21 17:01:10 +03:00
nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
688 B
Nix
Raw Normal View History

# This module defines a small NixOS installation CD. It does not
# contain any graphical stuff.
2022-04-27 00:24:10 +03:00
{ lib, ... }:
{
2022-04-27 00:24:10 +03:00
imports = [
../../profiles/minimal.nix
./installation-cd-base.nix
];
# Causes a lot of uncached builds for a negligible decrease in size.
environment.noXlibs = lib.mkOverride 500 false;
2022-04-27 00:24:10 +03:00
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;
2022-05-05 15:37:43 +03:00
fonts.fontconfig.enable = lib.mkForce false;
2022-04-27 00:24:10 +03:00
2022-05-05 15:37:43 +03:00
isoImage.edition = lib.mkForce "minimal";
}