summary refs log tree commit diff
path: root/nixos/modules/system/boot/loader/loader.nix
blob: 7fbda9ef0f576566031a691c27957c9272270b79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ lib, ... }:

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.
            '';
        };
    };
}