mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-16 11:43:21 +03:00
c507b39099
Co-authored-by: Samuel Dionne-Riel <samuel@dionne-riel.com> Co-authored-by: Edward Amsden <edward@blackriversoft.com>
17 lines
434 B
Nix
17 lines
434 B
Nix
{ pkgs, modules, baseModules, _mobile-nixos, ... }:
|
|
|
|
# This module provides the `recovery` build output.
|
|
# It is the same configuration, with minor customizations.
|
|
|
|
{
|
|
system.build.recovery = (_mobile-nixos.evalConfig {
|
|
inherit baseModules;
|
|
modules = modules ++ [{
|
|
mobile.system.android.bootimg.name = "recovery.img";
|
|
mobile.boot.stage-1.bootConfig = {
|
|
is_recovery = true;
|
|
};
|
|
}];
|
|
}).config;
|
|
}
|