mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-14 18:21:41 +03:00
37 lines
721 B
Nix
37 lines
721 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.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = {
|
|
mobile.boot.stage-1.contents = [
|
|
{
|
|
object = (builtins.path { path = ../artwork/sad-phone.svg; });
|
|
symlink = "/sad-phone.svg";
|
|
}
|
|
];
|
|
};
|
|
}
|