1{ lib, ... }:
2
3with lib;
4
5{
6 imports = [
7 (mkRenamedOptionModule [ "boot" "loader" "grub" "timeout" ] [ "boot" "loader" "timeout" ])
8 (mkRenamedOptionModule [ "boot" "loader" "gummiboot" "timeout" ] [ "boot" "loader" "timeout" ])
9 ];
10
11 options = {
12 boot.loader.timeout = mkOption {
13 default = 5;
14 type = types.nullOr types.int;
15 description = ''
16 Timeout (in seconds) until loader boots the default menu item. Use null if the loader menu should be displayed indefinitely.
17 '';
18 };
19 };
20}