From dc8cbffe31072927a367a7fbc757c740f6a67663 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 5 Jun 2009 12:57:44 +0000 Subject: [PATCH] * Revert r15862, as the "host" package in system-path.nix (or any other package) can be overriden by setting environment.systemPackages in /etc/nixos/configuration.nix: it shouldn't be special-cased. svn path=/nixos/branches/modular-nixos/; revision=15863 --- modules/config/system-path.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/config/system-path.nix b/modules/config/system-path.nix index 7f4eb61b4a1..62fbde95f7f 100644 --- a/modules/config/system-path.nix +++ b/modules/config/system-path.nix @@ -57,11 +57,10 @@ let pkgs.usbutils pkgs.utillinux pkgs.wirelesstools - ] ++ config.environment.extraPackages - ++ [ pkgs.host ] - ; + pkgs.host + ] ++ config.environment.extraPackages; + - options = { environment = {