fix(boot): rename extraSutrcturedConfig to structuredExtraConfig

The former was removed
This commit is contained in:
Antoine Viallon 2026-01-20 23:11:08 +01:00
parent 07ed5e3269
commit d545c6f4f3
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -25,13 +25,14 @@ let
enableRTGroupSched = {
name = "enable-rt-group-sched";
patch = null;
extraConfigStructuredConfig = with lib.kernel; {
structuredExtraConfig = with lib.kernel; {
RT_GROUP_SCHED = yes;
};
};
enableEnergyModel = {
name = "enable-energy-model";
patch = null; extraStructuredConfig = with lib.kernel; {
patch = null;
structuredExtraConfig = with lib.kernel; {
ENERGY_MODEL = yes;
};
};