mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-15 19:23:01 +03:00
16 lines
379 B
Nix
16 lines
379 B
Nix
{ config, pkgs, ... }:
|
|
|
|
# This module provides the `recovery` build output.
|
|
# It is the same configuration, with minor customizations.
|
|
|
|
{
|
|
system.build.recovery = (config.lib.mobile-nixos.composeConfig {
|
|
config = {
|
|
mobile.system.android.bootimg.name = "recovery.img";
|
|
mobile.boot.stage-1.bootConfig = {
|
|
is_recovery = true;
|
|
};
|
|
};
|
|
}).config;
|
|
}
|