3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/lib/check-config.nix
Nicolas Pierron 36bc4971ba Inline the require attribute and move the set into lib/check-config.nix.
svn path=/nixos/branches/modular-nixos/; revision=16194
2009-07-06 16:21:03 +00:00

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.
'';
};
}