Compare commits
No commits in common. "76b2e9949f44f74d4ba789bd170d3b1d8a364244" and "bb00673bb0aa04b6620c4d8c358a06c826032205" have entirely different histories.
76b2e9949f
...
bb00673bb0
|
@ -5,7 +5,7 @@ with pkgs;
|
||||||
{
|
{
|
||||||
# Kernel configuration
|
# Kernel configuration
|
||||||
boot = {
|
boot = {
|
||||||
kernelPackages = linuxPackages_zen;
|
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
||||||
kernelParams = [
|
kernelParams = [
|
||||||
"zfs.zfs_arc_max=2147483648"
|
"zfs.zfs_arc_max=2147483648"
|
||||||
"zfs.zfs_arc_meta_limit_percent=90"
|
"zfs.zfs_arc_meta_limit_percent=90"
|
||||||
|
@ -14,9 +14,9 @@ with pkgs;
|
||||||
"ipv6.disable=1"
|
"ipv6.disable=1"
|
||||||
"ahci.mobile_lpm_policy=3"
|
"ahci.mobile_lpm_policy=3"
|
||||||
"nmi_watchdog=0"
|
"nmi_watchdog=0"
|
||||||
"retbleed=stuff"
|
|
||||||
];
|
];
|
||||||
kernelModules = [ "i915" ];
|
kernelModules = [ "i915" "acpi_call" ];
|
||||||
|
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
|
||||||
blacklistedKernelModules = [ "btusb" "bluetooth" ];
|
blacklistedKernelModules = [ "btusb" "bluetooth" ];
|
||||||
supportedFilesystems = [ "zfs" ];
|
supportedFilesystems = [ "zfs" ];
|
||||||
zfs = {
|
zfs = {
|
||||||
|
|
Loading…
Reference in New Issue