mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
15 lines
264 B
Nix
15 lines
264 B
Nix
{ pkgs, ... }:
|
|
|
|
with pkgs.lib;
|
|
|
|
{
|
|
options = {
|
|
environment.checkConfigurationOptions = mkOption {
|
|
type = types.bool;
|
|
default = true;
|
|
description = ''
|
|
Whether to check the validity of the entire configuration.
|
|
'';
|
|
};
|
|
};
|
|
}
|