mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
3a8fd0ef47
Causes a lot of uncached builds for a negligible decrease in size (822 → 821 MiB currently).
21 lines
468 B
Nix
21 lines
468 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
|
|
];
|
|
|
|
# Causes a lot of uncached builds for a negligible decrease in size.
|
|
environment.noXlibs = lib.mkOverride 500 false;
|
|
|
|
documentation.man.enable = lib.mkOverride 500 true;
|
|
|
|
fonts.fontconfig.enable = lib.mkForce false;
|
|
|
|
isoImage.edition = lib.mkForce "minimal";
|
|
}
|