Compare commits

..

2 Commits

Author SHA1 Message Date
coolneng 76b2e9949f
Enable retbleed newer mitigation and zen kernel 2023-03-17 00:19:05 +01:00
coolneng fa7359da55
Remove redundant acpi_call 2023-03-17 00:18:08 +01:00
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ with pkgs;
{
# Kernel configuration
boot = {
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
kernelPackages = linuxPackages_zen;
kernelParams = [
"zfs.zfs_arc_max=2147483648"
"zfs.zfs_arc_meta_limit_percent=90"
@ -14,9 +14,9 @@ with pkgs;
"ipv6.disable=1"
"ahci.mobile_lpm_policy=3"
"nmi_watchdog=0"
"retbleed=stuff"
];
kernelModules = [ "i915" "acpi_call" ];
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
kernelModules = [ "i915" ];
blacklistedKernelModules = [ "btusb" "bluetooth" ];
supportedFilesystems = [ "zfs" ];
zfs = {