2009-03-06 12:25:35 +00:00
|
|
|
{pkgs, config, ...}:
|
2009-04-12 14:38:41 +00:00
|
|
|
|
2009-05-25 17:41:03 +00:00
|
|
|
with pkgs.lib;
|
2009-03-06 12:25:35 +00:00
|
|
|
|
2009-04-12 14:38:41 +00:00
|
|
|
{
|
|
|
|
|
environment = {
|
|
|
|
|
checkConfigurationOptions = mkOption {
|
|
|
|
|
default = true;
|
|
|
|
|
example = false;
|
|
|
|
|
description = "
|
|
|
|
|
If all configuration options must be checked. Non-existing options fail build.
|
|
|
|
|
";
|
|
|
|
|
};
|
|
|
|
|
};
|
2009-03-06 12:25:35 +00:00
|
|
|
}
|