1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-11-12 13:13:02 +03:00

modules/recovery: Use composeConfig

This commit is contained in:
Samuel Dionne-Riel 2021-01-28 21:32:02 -05:00
parent 34b033330f
commit 84b7e5eead

View File

@ -1,16 +1,15 @@
{ pkgs, modules, baseModules, _mobile-nixos, ... }: { config, pkgs, ... }:
# This module provides the `recovery` build output. # This module provides the `recovery` build output.
# It is the same configuration, with minor customizations. # It is the same configuration, with minor customizations.
{ {
system.build.recovery = (_mobile-nixos.evalConfig { system.build.recovery = (config.lib.mobile-nixos.composeConfig {
inherit baseModules; config = {
modules = modules ++ [{
mobile.system.android.bootimg.name = "recovery.img"; mobile.system.android.bootimg.name = "recovery.img";
mobile.boot.stage-1.bootConfig = { mobile.boot.stage-1.bootConfig = {
is_recovery = true; is_recovery = true;
}; };
}]; };
}).config; }).config;
} }