From 7a6df0a5a89dcf9f348365f9c47d8919312e2f67 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 29 Nov 2008 07:10:31 +0000 Subject: [PATCH] Create a low-priority section in system.nix; host goes there svn path=/nixos/trunk/; revision=13513 --- system/system.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/system/system.nix b/system/system.nix index fa49383e048..08422d5bd2d 100644 --- a/system/system.nix +++ b/system/system.nix @@ -186,7 +186,6 @@ rec { pkgs.gnutar pkgs.grub pkgs.gzip - pkgs.host pkgs.iputils pkgs.less pkgs.lvm2 @@ -231,7 +230,15 @@ rec { # chroot gets to seem them, and (ii) applications can benefit from # changes in the list of NSS modules at run-time, without requiring # a reboot. - ++ nssModules; + ++ nssModules + + # These packages are nice fallbacks unless any of the more powerful + # substitutes is present. + ++ [ + # Use ISC BIND version of the host util if you don't mind installing BIND + pkgs.host + ] + ; # We don't want to put all of `startPath' and `path' in $PATH, since