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.
This commit is contained in:
Eelco Dolstra
2013-10-23 20:08:21 +02:00
parent e29b51bfb1
commit 29014a47fb
6 changed files with 13 additions and 3 deletions
+3
View File
@@ -7,16 +7,19 @@ with pkgs.lib;
options = {
system.nixosVersion = mkOption {
internal = true;
type = types.uniq types.string;
description = "NixOS version.";
};
system.nixosVersionSuffix = mkOption {
internal = true;
type = types.uniq types.string;
description = "NixOS version suffix.";
};
system.nixosCodeName = mkOption {
internal = true;
type = types.uniq types.string;
description = "NixOS release code name.";
};