From 71b49ba6fe64f994a524d4d3e7d5143758eee164 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 25 Oct 2021 21:37:38 +0800 Subject: [PATCH] nixops: use latest kernel for NUC fixes video driver bug --- nixops/franz-hardware-configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixops/franz-hardware-configuration.nix b/nixops/franz-hardware-configuration.nix index 99eb07b..af19008 100644 --- a/nixops/franz-hardware-configuration.nix +++ b/nixops/franz-hardware-configuration.nix @@ -10,6 +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.kernelModules = [ "kvm-intel" ]; boot.blacklistedKernelModules = [ "iwlwifi" ]; boot.extraModulePackages = [ ];