* 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:
parent
e87764e327
commit
6e95485a28
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue