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

@ -42,6 +42,16 @@
};
tmp.cleanOnBoot = true;
kernelPackages = pkgs.linuxKernel.packages.linux_zen;
kernelPatches = [
{
name = "zen";
patch = null;
extraStructuredConfig = with lib.kernel; {
CONFIG_SCHED_MUQSS = yes;
};
}
];
# kernelPackages = with pkgs.linuxKernel; packagesFor kernels.linux_zen;
extraModulePackages = with config.boot.kernelPackages; [
rtl8821ce
];