mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
f93ba51469
timeout options of grub and gummiboot will inherit the value of this option by default.
15 lines
371 B
Nix
15 lines
371 B
Nix
{ 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.
|
|
'';
|
|
};
|
|
};
|
|
} |