mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
[Boot] enable RT_GROUP_SCHED by default if optimizations enabled
Documented here: https://www.kernel.org/doc/html/latest/scheduler/sched-rt-group.html It looks like the documentation is very outdated though (as SCHED_EDF exists and is named SCHED_DEADLINE).
This commit is contained in:
parent
a6fc37896c
commit
f835a985f4
1 changed files with 1 additions and 1 deletions
2
boot.nix
2
boot.nix
|
|
@ -145,7 +145,7 @@ in {
|
|||
|
||||
x32abi.enable = mkEnableOption "X32 kernel ABI";
|
||||
kvdo.enable = mkEnableOption "dm-kvdo kernel module";
|
||||
rtGroupSched.enable = mkEnableOption "RT cgroups";
|
||||
rtGroupSched.enable = mkEnableOption "RT cgroups" // { default = config.aviallon.optimizations.enable; };
|
||||
energyModel.enable = mkEnableOption "Energy Model";
|
||||
|
||||
patches = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue