nixos: loader: added generic config.boot.loader.timeout option

timeout options of grub and gummiboot will inherit the value of this
option by default.
This commit is contained in:
Bob van der Linden
2015-01-30 09:53:44 +01:00
committed by Luca Bruno
parent db75b5d052
commit f93ba51469
4 changed files with 20 additions and 2 deletions
@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
with lib;
{
options = {
boot.loader.timeout = mkOption {
default = 5;
type = types.nullOr types.int;
description = ''
Timeout (in seconds) until loader boots the default menu item. Use null if the loader menu should be displayed indefinitely.
'';
};
};
}