mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 17:41:12 +00:00
* 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 {
|
||||
default = true;
|
||||
default = config.boot.kernelPackages.splashutils != null;
|
||||
example = false;
|
||||
description = ''
|
||||
Whether to activate VESA video mode on boot.
|
||||
|
|
Loading…
Reference in a new issue