2014-04-14 16:26:48 +02:00
|
|
|
{ lib, ... }:
|
2013-10-30 17:37:45 +01:00
|
|
|
|
2014-04-14 16:26:48 +02:00
|
|
|
with lib;
|
2009-07-06 18:21:03 +02:00
|
|
|
|
|
|
|
{
|
2009-09-15 10:33:45 +02:00
|
|
|
options = {
|
2013-10-30 17:37:45 +01:00
|
|
|
environment.checkConfigurationOptions = mkOption {
|
|
|
|
type = types.bool;
|
2009-09-15 10:33:45 +02:00
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Whether to check the validity of the entire configuration.
|
|
|
|
'';
|
|
|
|
};
|
2009-07-06 18:21:03 +02:00
|
|
|
};
|
2009-09-15 10:33:45 +02:00
|
|
|
}
|