02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
20 lines
583 B
Nix
20 lines
583 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [
|
|
(mkRenamedOptionModule [ "boot" "loader" "grub" "timeout" ] [ "boot" "loader" "timeout" ])
|
|
(mkRenamedOptionModule [ "boot" "loader" "gummiboot" "timeout" ] [ "boot" "loader" "timeout" ])
|
|
];
|
|
|
|
options = {
|
|
boot.loader.timeout = mkOption {
|
|
default = 5;
|
|
type = types.nullOr types.int;
|
|
description = lib.mdDoc ''
|
|
Timeout (in seconds) until loader boots the default menu item. Use null if the loader menu should be displayed indefinitely.
|
|
'';
|
|
};
|
|
};
|
|
}
|