about summary refs log tree commit diff
path: root/nixos/modules/misc/meta.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/misc/meta.nix')
-rw-r--r--nixos/modules/misc/meta.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/nixos/modules/misc/meta.nix b/nixos/modules/misc/meta.nix
index 3dd97cbec235e..8e689a63f6bf6 100644
--- a/nixos/modules/misc/meta.nix
+++ b/nixos/modules/misc/meta.nix
@@ -54,6 +54,21 @@ in
         '';
       };
 
+      buildDocsInSandbox = mkOption {
+        type = types.bool // {
+          merge = loc: defs: defs;
+        };
+        internal = true;
+        default = true;
+        description = ''
+          Whether to include this module in the split options doc build.
+          Disable if the module references `config`, `pkgs` or other module
+          arguments that cannot be evaluated as constants.
+
+          This option should be defined at most once per module.
+        '';
+      };
+
     };
   };