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, ...}: {pkgs, config, ...}:
let
inherit (pkgs.lib) mergeOneOption mkOption mkIf;
in
{
require = [
{
let
inherit (pkgs.lib) mergeOneOption mkOption;
in
{
environment = { environment = {
checkConfigurationOptions = mkOption { checkConfigurationOptions = mkOption {
default = true; default = true;
@ -63,5 +61,3 @@ in
}; };
}; };
} }
];
}