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