2009-06-11 09:51:27 +00:00
|
|
|
# This module defines a small NixOS installation CD. It does not
|
|
|
|
# contain any graphical stuff.
|
|
|
|
|
2022-04-27 00:24:10 +03:00
|
|
|
{ lib, ... }:
|
2009-06-11 09:51:27 +00:00
|
|
|
|
|
|
|
{
|
2022-04-27 00:24:10 +03:00
|
|
|
imports = [
|
|
|
|
../../profiles/minimal.nix
|
|
|
|
./installation-cd-base.nix
|
|
|
|
];
|
2018-10-27 15:12:51 +03:00
|
|
|
|
2022-12-21 15:17:53 +01:00
|
|
|
# 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;
|
2020-04-09 20:06:32 -04:00
|
|
|
|
2023-01-16 10:07:57 +01:00
|
|
|
# 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";
|
2009-06-11 09:51:27 +00:00
|
|
|
}
|