From d545c6f4f32b555e64b8dc24c3afe50a87990274 Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Tue, 20 Jan 2026 23:11:08 +0100 Subject: [PATCH] fix(boot): rename extraSutrcturedConfig to structuredExtraConfig The former was removed --- boot.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/boot.nix b/boot.nix index df55d45..9f2e189 100644 --- a/boot.nix +++ b/boot.nix @@ -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; }; };