1{ config, lib, pkgs, ... }:
2
3with lib;
4
5{
6 options = {
7 boot.loader.timeout = mkOption {
8 default = 5;
9 type = types.nullOr types.int;
10 description = ''
11 Timeout (in seconds) until loader boots the default menu item. Use null if the loader menu should be displayed indefinitely.
12 '';
13 };
14 };
15}