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