From c00448493bac03ea7aaada2beabf780c4f0e887e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Jan 2008 16:09:55 +0000 Subject: [PATCH] * Use vim instead of vimDiet on the CD because ncurses on dietlibc is broken on x86_64 (apparently because dietlibc on x86_64 doesn't have sin() / cos()). svn path=/nixos/trunk/; revision=10052 --- configuration/rescue-cd.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/rescue-cd.nix b/configuration/rescue-cd.nix index 51128301e97..92369fa866e 100644 --- a/configuration/rescue-cd.nix +++ b/configuration/rescue-cd.nix @@ -84,7 +84,7 @@ rec { environment = { extraPackages = pkgs: [ - pkgs.vimDiet + pkgs.vim ]; };