This commit is contained in:
Jimbo 2024-12-15 17:51:29 -05:00
parent 3ab12d4a1f
commit 2d3d4bcc2b
5 changed files with 17 additions and 4 deletions

View file

@ -1,8 +1,12 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
boot = {
kernelPackages = pkgs.unstable.linuxPackages_latest;
kernel.sysctl."vm.max_map_count" = 2147483642;
blacklistedKernelModules = [ "pcspkr" ];
};
# Kernel that won't explode the MacBook Air
specialisation.nouveau.configuration.config = {
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_5_10;
};
}