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

with lib;

{
  options = {
    environment.checkConfigurationOptions = mkOption {
      type = types.bool;
      default = true;
      description = ''
        Whether to check the validity of the entire configuration.
      '';
    };
  };
}