From 9fa758c657ff7d8995f95ae54b9c107bec4904c8 Mon Sep 17 00:00:00 2001 From: Nicolas Pierron Date: Sun, 25 Jan 2009 15:48:43 +0000 Subject: [PATCH] Update the function used to merge option sets. svn path=/nixos/branches/fix-style/; revision=13853 --- system/system.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/system/system.nix b/system/system.nix index 75087708b83..656625846e1 100644 --- a/system/system.nix +++ b/system/system.nix @@ -11,14 +11,11 @@ rec { systemPathList ]; - noOption = name: values: - abort "${name}: Used without option declaration."; - # Make a configuration object from which we can retrieve option # values. config = pkgs.lib.fixOptionSets - (pkgs.lib.mergeOptionSets noOption) + pkgs.lib.newMergeOptionSets pkgs configComponents; optionDeclarations =