nixpkgs/system/nixos-environment.nix

16 lines
278 B
Nix
Raw Normal View History

{pkgs, config, ...}:
with pkgs.lib;
{
environment = {
checkConfigurationOptions = mkOption {
default = true;
example = false;
description = "
If all configuration options must be checked. Non-existing options fail build.
";
};
};
}