Remove useless require attribute in system/nixos-environment.nix.

svn path=/nixos/branches/modular-nixos/; revision=14994
This commit is contained in:
Nicolas Pierron 2009-04-12 14:38:41 +00:00
parent 3a8ef07934
commit 313fa38e2e

View file

@ -1,12 +1,10 @@
{pkgs, config, ...}:
let
inherit (pkgs.lib) mergeOneOption mkOption mkIf;
in
{
require = [
{
let
inherit (pkgs.lib) mergeOneOption mkOption;
in
{
environment = {
checkConfigurationOptions = mkOption {
default = true;
@ -62,6 +60,4 @@ in
";
};
};
}
];
}