linux: fix structuredExtraConfig

This commit is contained in:
Alex Lyon
2025-08-05 01:30:25 -07:00
parent 3bc388f11c
commit 64352daf32

View File

@@ -139,11 +139,11 @@ let
structuredConfigFromPatches = map (
{
extraStructuredConfig ? { },
structuredExtraConfig ? { },
...
}:
{
settings = extraStructuredConfig;
settings = structuredExtraConfig;
}
) kernelPatches;