1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-14 09:16:39 +03:00
mobile-nixos/modules/initrd-fail.nix
2021-07-19 15:50:06 -04:00

28 lines
535 B
Nix

{ config, lib, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
cfg = config.mobile.boot.stage-1.fail;
in
{
options.mobile = {
boot.stage-1.fail = {
reboot = mkOption {
type = types.bool;
default = true;
description = ''
Reboots the device after a delay on failure.
'';
};
delay = mkOption {
type = types.int;
default = 10;
description = ''
Duration (in seconds) before a reboot on failure.
'';
};
};
};
}