From 836789a8a695a25fef409c4640cdcaf4141269b6 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 23 Jan 2007 09:41:19 +0000 Subject: [PATCH] * pkgs doesn't have a system attribute. svn path=/nixos/trunk/; revision=7760 --- configuration/rescue-cd.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration/rescue-cd.nix b/configuration/rescue-cd.nix index 9fcc7ffd93fb..661bcdf33a56 100644 --- a/configuration/rescue-cd.nix +++ b/configuration/rescue-cd.nix @@ -12,7 +12,7 @@ rec { # The label used to identify the installation CD. rootLabel = "NIXOS"; initrd = { - enableSplashScreen = pkgs.system != "x86_64-linux"; + enableSplashScreen = pkgs.stdenv.system != "x86_64-linux"; }; }; @@ -40,7 +40,7 @@ rec { # And a background to go with that. ttyBackgrounds = { - enable = pkgs.system != "x86_64-linux"; + enable = pkgs.stdenv.system != "x86_64-linux"; specificThemes = [ { tty = 8; theme = pkgs.fetchurl {