11 lines
219 B
Nix
11 lines
219 B
Nix
|
{pkgs, ...}:
|
||
|
|
||
|
{
|
||
|
environment.checkConfigurationOptions = pkgs.lib.mkOption {
|
||
|
default = true;
|
||
|
example = false;
|
||
|
description = ''
|
||
|
Whether to check the validity of the entire configuration.
|
||
|
'';
|
||
|
};
|
||
|
}
|