summary refs log tree commit diff
path: root/modules/misc/check-config.nix
blob: 28f36ad9ae5515143d63346377aa4a5eded7292a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{pkgs, ...}:

{
  options = {
    environment.checkConfigurationOptions = pkgs.lib.mkOption {
      default = true;
      example = false;
      description = ''
        Whether to check the validity of the entire configuration.
      '';
    };
  };
}