2024-12-15 17:51:29 -05:00
|
|
|
{ pkgs, lib, ... }:
|
2024-11-29 01:49:18 -05:00
|
|
|
{
|
2024-11-06 22:39:23 -05:00
|
|
|
boot = {
|
2024-11-29 01:49:18 -05:00
|
|
|
kernelPackages = pkgs.unstable.linuxPackages_latest;
|
2024-11-24 16:53:49 -05:00
|
|
|
blacklistedKernelModules = [ "pcspkr" ];
|
2024-11-06 22:39:23 -05:00
|
|
|
};
|
2024-12-15 17:51:29 -05:00
|
|
|
|
|
|
|
# Kernel that won't explode the MacBook Air
|
2024-12-16 12:11:12 -05:00
|
|
|
specialisation.oldkernel.configuration.config = {
|
2024-12-15 17:51:29 -05:00
|
|
|
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_5_10;
|
|
|
|
};
|
2024-11-06 22:39:23 -05:00
|
|
|
}
|