From 9013af9e9222eb19069684ebf2236abc77da1ff0 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 2 Dec 2021 11:03:41 +0800 Subject: [PATCH] nixops: use kernel 5.14 for nuc --- nixops/franz-hardware-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixops/franz-hardware-configuration.nix b/nixops/franz-hardware-configuration.nix index 334b8af..cc4d5b5 100644 --- a/nixops/franz-hardware-configuration.nix +++ b/nixops/franz-hardware-configuration.nix @@ -10,7 +10,7 @@ boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.kernelModules = [ ]; - boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelPackages = pkgs.linuxPackages_5_14; boot.kernelModules = [ "kvm-intel" ]; boot.blacklistedKernelModules = [ "iwlwifi" ]; boot.extraModulePackages = [ ];