nixpkgs/nixos/modules/misc/check-config.nix

16 lines
258 B
Nix
Raw Normal View History

{ lib, ... }:
2013-10-30 16:37:45 +00:00
with lib;
{
options = {
2013-10-30 16:37:45 +00:00
environment.checkConfigurationOptions = mkOption {
type = types.bool;
default = true;
description = ''
Whether to check the validity of the entire configuration.
'';
};
};
}