From fefe814be390cff8c36c3d2c02788b517249226d Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sun, 11 Apr 2021 14:12:39 +0530 Subject: Fixes linux kernal version --- hardware-configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hardware-configuration.nix') diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 5efa556..2337614 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -7,12 +7,12 @@ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelPackages = pkgs.linuxPackages_5_10; boot.initrd = { availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" ]; kernelModules = []; }; - boot.kernelModules = ["kvm-intel" "sd_mod" "rtw88_8822ce"]; + boot.kernelModules = [ "kvm-intel" "sd_mod" "rtw88_8822ce" ]; boot.kernelParams = [ "i8042.nopnp=1" "pci=nocrs" "i915.enable_dpcd_backlight=1" "acpi_backlight=vendor" ]; boot.extraModulePackages = []; boot.extraModprobeConfig = '' -- cgit v1.3.1