mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
fix(boot): rename extraSutrcturedConfig to structuredExtraConfig
The former was removed
This commit is contained in:
parent
07ed5e3269
commit
d545c6f4f3
1 changed files with 3 additions and 2 deletions
5
boot.nix
5
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;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue