Revert "nixos/kernel.nix: ensure same kernel is used"
This reverts commit 78f915a0025a594b334bccd3a56023d5c6f8310c.
This commit is contained in:
parent
fc9d4763b9
commit
f413b2bc51
@ -37,10 +37,12 @@ in
|
|||||||
boot.kernelPackages = mkOption {
|
boot.kernelPackages = mkOption {
|
||||||
default = pkgs.linuxPackages;
|
default = pkgs.linuxPackages;
|
||||||
type = types.unspecified // { merge = mergeEqualOption; };
|
type = types.unspecified // { merge = mergeEqualOption; };
|
||||||
apply = kernelPackages: pkgs.linuxPackagesFor (kernelPackages.kernel.override {
|
apply = kernelPackages: kernelPackages.extend (self: super: {
|
||||||
|
kernel = super.kernel.override {
|
||||||
inherit randstructSeed;
|
inherit randstructSeed;
|
||||||
kernelPatches = kernelPackages.kernel.kernelPatches ++ kernelPatches;
|
kernelPatches = super.kernel.kernelPatches ++ kernelPatches;
|
||||||
features = lib.recursiveUpdate kernelPackages.kernel.features features;
|
features = lib.recursiveUpdate super.kernel.features features;
|
||||||
|
};
|
||||||
});
|
});
|
||||||
# We don't want to evaluate all of linuxPackages for the manual
|
# We don't want to evaluate all of linuxPackages for the manual
|
||||||
# - some of it might not even evaluate correctly.
|
# - some of it might not even evaluate correctly.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user