summary refs log tree commit diff
path: root/nixos/modules/misc/version.nix
diff options
context:
space:
mode:
authorpennae <github@quasiparticle.net>2021-11-19 00:26:27 +0100
committerpennae <github@quasiparticle.net>2022-01-02 19:46:13 +0100
commitfc614c37c653637e5475a0b0a987489b4d1f351d (patch)
tree7b2470a3a67979ddcc51f18bb0d424f8e95908b1 /nixos/modules/misc/version.nix
parent55daffc1c943bddb71dc89a606f8284f6d50f5bd (diff)
downloadnixpkgs-fc614c37c653637e5475a0b0a987489b4d1f351d.tar
nixpkgs-fc614c37c653637e5475a0b0a987489b4d1f351d.tar.gz
nixpkgs-fc614c37c653637e5475a0b0a987489b4d1f351d.tar.bz2
nixpkgs-fc614c37c653637e5475a0b0a987489b4d1f351d.tar.lz
nixpkgs-fc614c37c653637e5475a0b0a987489b4d1f351d.tar.xz
nixpkgs-fc614c37c653637e5475a0b0a987489b4d1f351d.tar.zst
nixpkgs-fc614c37c653637e5475a0b0a987489b4d1f351d.zip
nixos/documentation: split options doc build
most modules can be evaluated for their documentation in a very
restricted environment that doesn't include all of nixpkgs. this
evaluation can then be cached and reused for subsequent builds, merging
only documentation that has changed into the cached set. since nixos
ships with a large number of modules of which only a few are used in any
given config this can save evaluation a huge percentage of nixos
options available in any given config.

in tests of this caching, despite having to copy most of nixos/, saves
about 80% of the time needed to build the system manual, or about two
second on the machine used for testing. build time for a full system
config shrank from 9.4s to 7.4s, while turning documentation off
entirely shortened the build to 7.1s.
Diffstat (limited to 'nixos/modules/misc/version.nix')
-rw-r--r--nixos/modules/misc/version.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix
index fc0d65d5148..6c526f6d4f2 100644
--- a/nixos/modules/misc/version.nix
+++ b/nixos/modules/misc/version.nix
@@ -119,4 +119,6 @@ in
 
   };
 
+  # uses version info nixpkgs, which requires a full nixpkgs path
+  meta.buildDocsInSandbox = false;
 }