use kernelpatches instead of overlay

This commit is contained in:
cy 2025-01-22 11:04:48 -05:00
parent f9cc197be2
commit cd44615299
3 changed files with 13 additions and 3 deletions

View file

@ -2,7 +2,7 @@ let
overlays = [
./conduwuit
./attic
./kernel.nix
# ./kernel.nix
];
importedOverlays = map (m: import m) overlays;
in

View file

@ -3,8 +3,8 @@ let
inherit (prev) lib;
in
{
linuxKernels.kernels.linux_zen = prev.linuxKernels.kernels.linux_zen.override (old: {
extraStructuredConfig = with lib.kernel; {
linuxKernel.kernels.linux_zen = prev.linuxKernel.kernels.linux_zen.override (old: {
structuredExtraConfig = with lib.kernel; {
CONFIG_SCHED_MUQSS = yes;
};
});