mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +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 = {
|
enableRTGroupSched = {
|
||||||
name = "enable-rt-group-sched";
|
name = "enable-rt-group-sched";
|
||||||
patch = null;
|
patch = null;
|
||||||
extraConfigStructuredConfig = with lib.kernel; {
|
structuredExtraConfig = with lib.kernel; {
|
||||||
RT_GROUP_SCHED = yes;
|
RT_GROUP_SCHED = yes;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
enableEnergyModel = {
|
enableEnergyModel = {
|
||||||
name = "enable-energy-model";
|
name = "enable-energy-model";
|
||||||
patch = null; extraStructuredConfig = with lib.kernel; {
|
patch = null;
|
||||||
|
structuredExtraConfig = with lib.kernel; {
|
||||||
ENERGY_MODEL = yes;
|
ENERGY_MODEL = yes;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue