vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / system / boot / loader / loader.nix
blob01475f79b9c25d4a8d64af3786c5ae985eef040f
1 { lib, ... }:
3 with lib;
6   imports = [
7     (mkRenamedOptionModule [ "boot" "loader" "grub" "timeout" ] [ "boot" "loader" "timeout" ])
8     (mkRenamedOptionModule [ "boot" "loader" "gummiboot" "timeout" ] [ "boot" "loader" "timeout" ])
9   ];
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     };