summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-23 16:59:33 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2013-10-23 20:08:21 +0200
commit29014a47fb9302e8b86d4cd6698298a50e8f3b25 (patch)
tree9697d2f00fb04958f83937007a3c2b8428931e2b /nixos/modules/config
parente29b51bfb1eefe2f8d2dcac4fba8ea734115804c (diff)
downloadnixlib-29014a47fb9302e8b86d4cd6698298a50e8f3b25.tar
nixlib-29014a47fb9302e8b86d4cd6698298a50e8f3b25.tar.gz
nixlib-29014a47fb9302e8b86d4cd6698298a50e8f3b25.tar.bz2
nixlib-29014a47fb9302e8b86d4cd6698298a50e8f3b25.tar.lz
nixlib-29014a47fb9302e8b86d4cd6698298a50e8f3b25.tar.xz
nixlib-29014a47fb9302e8b86d4cd6698298a50e8f3b25.tar.zst
nixlib-29014a47fb9302e8b86d4cd6698298a50e8f3b25.zip
Allow options to be marked as "internal"
This means they're not for end users.  Currently they're filtered from
the manual, but we could include them in a separate section.
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/system-path.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix
index e640592a97eb..0610ad54da34 100644
--- a/nixos/modules/config/system-path.nix
+++ b/nixos/modules/config/system-path.nix
@@ -85,6 +85,7 @@ in
     system = {
 
       path = mkOption {
+        internal = true;
         description = ''
           The packages you want in the boot environment.
         '';