diff options
| author | Akshay Nair <phenax5@gmail.com> | 2021-04-11 14:12:39 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2021-04-11 14:12:39 +0530 |
| commit | fefe814be390cff8c36c3d2c02788b517249226d (patch) | |
| tree | dd084c177f5ebbc22207ab61c7a1e38a5e1962da | |
| parent | 217265c34dd34bcb3957d780d834c6e8b16ff69e (diff) | |
| download | nixos-config-fefe814be390cff8c36c3d2c02788b517249226d.tar.gz nixos-config-fefe814be390cff8c36c3d2c02788b517249226d.zip | |
Fixes linux kernal version
Diffstat (limited to '')
| -rw-r--r-- | hardware-configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
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 = '' |
