summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd
diff options
context:
space:
mode:
authorNaïm Favier <n@monade.li>2022-12-21 15:17:53 +0100
committerNaïm Favier <n@monade.li>2022-12-21 15:19:37 +0100
commit3a8fd0ef47c22a1262dbf4ef80936b27cfa13157 (patch)
treeee3b49dd448e4a01baa31186cb46275774a4e50c /nixos/modules/installer/cd-dvd
parent04f574a1c0fde90b51bf68198e2297ca4e7cccf4 (diff)
downloadnixpkgs-3a8fd0ef47c22a1262dbf4ef80936b27cfa13157.tar
nixpkgs-3a8fd0ef47c22a1262dbf4ef80936b27cfa13157.tar.gz
nixpkgs-3a8fd0ef47c22a1262dbf4ef80936b27cfa13157.tar.bz2
nixpkgs-3a8fd0ef47c22a1262dbf4ef80936b27cfa13157.tar.lz
nixpkgs-3a8fd0ef47c22a1262dbf4ef80936b27cfa13157.tar.xz
nixpkgs-3a8fd0ef47c22a1262dbf4ef80936b27cfa13157.tar.zst
nixpkgs-3a8fd0ef47c22a1262dbf4ef80936b27cfa13157.zip
nixos/installation-cd-minimal: disable `noXlibs`
Causes a lot of uncached builds for a negligible decrease in size (822 →
821 MiB currently).
Diffstat (limited to 'nixos/modules/installer/cd-dvd')
-rw-r--r--nixos/modules/installer/cd-dvd/installation-cd-minimal.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix b/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
index abf0a5186b6..7a3bd74cb70 100644
--- a/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
+++ b/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
@@ -9,6 +9,9 @@
     ./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;