mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
[Boot] mark configured kernel packages as second-highest priority (just behind mkForce)
This commit is contained in:
parent
a12020e7d9
commit
d3ec1f59ff
1 changed files with 1 additions and 1 deletions
2
boot.nix
2
boot.nix
|
|
@ -191,7 +191,7 @@ in {
|
|||
initrd.kernelModules = [ ];
|
||||
initrd.availableKernelModules = [ "ehci_pci" ];
|
||||
|
||||
kernelPackages = pkgs.linuxPackagesFor cfg.kernel;
|
||||
kernelPackages = mkOverride 2 (pkgs.linuxPackagesFor cfg.kernel);
|
||||
|
||||
kernelPatches = []
|
||||
++ optional cfg.x32abi.enable customKernelPatches.enableX32ABI
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue