···196 ];
197 };
198199- linux_zen = callPackage ../os-specific/linux/kernel/linux-zen.nix {
0000200 kernelPatches = [
201 kernelPatches.bridge_stp_helper
202 kernelPatches.request_key_helper
203 ];
204- };
205206- linux_lqx = callPackage ../os-specific/linux/kernel/linux-lqx.nix {
207 kernelPatches = [
208 kernelPatches.bridge_stp_helper
209 kernelPatches.request_key_helper
210 ];
211- };
212213 # This contains both the STABLE and EDGE variants of the XanMod kernel
214 xanmodKernels = callPackage ../os-specific/linux/kernel/xanmod-kernels.nix;
···196 ];
197 };
198199+ # Using zenKernels like this due lqx&zen came from one source, but may have different base kernel version
200+ # https://github.com/NixOS/nixpkgs/pull/161773#discussion_r820134708
201+ zenKernels = callPackage ../os-specific/linux/kernel/zen-kernels.nix;
202+203+ linux_zen = (zenKernels {
204 kernelPatches = [
205 kernelPatches.bridge_stp_helper
206 kernelPatches.request_key_helper
207 ];
208+ }).zen;
209210+ linux_lqx = (zenKernels {
211 kernelPatches = [
212 kernelPatches.bridge_stp_helper
213 kernelPatches.request_key_helper
214 ];
215+ }).lqx;
216217 # This contains both the STABLE and EDGE variants of the XanMod kernel
218 xanmodKernels = callPackage ../os-specific/linux/kernel/xanmod-kernels.nix;