* Set boot.vesa to false if we don't have a fbcondecor-enabled kernel.

svn path=/nixos/trunk/; revision=30802
This commit is contained in:
Eelco Dolstra 2011-12-08 12:25:33 +00:00
parent e87764e327
commit 6e95485a28
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ let kernel = config.boot.kernelPackages.kernel; in
}; };
boot.vesa = mkOption { boot.vesa = mkOption {
default = true; default = config.boot.kernelPackages.splashutils != null;
example = false; example = false;
description = '' description = ''
Whether to activate VESA video mode on boot. Whether to activate VESA video mode on boot.