From 7f521f0086e011577424bd296b6d4c8f96078e28 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Thu, 26 Dec 2024 21:20:35 -0500 Subject: [PATCH] Use pkgs.linuxPackages_latest --- machines/hephaestus/configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/machines/hephaestus/configuration.nix b/machines/hephaestus/configuration.nix index 913521a..54d4efc 100644 --- a/machines/hephaestus/configuration.nix +++ b/machines/hephaestus/configuration.nix @@ -37,9 +37,11 @@ in }; boot = { - extraModulePackages = with config.boot.kernelPackages; [ xpadneo ]; + extraModulePackages = with config.boot.kernelPackages; [ + xpadneo # Advanced Linux Driver for Xbox One Wireless Controller + ]; kernelModules = [ "kvm-amd" ]; - kernelPackages = pkgs.linuxPackages; + kernelPackages = pkgs.linuxPackages_latest; loader = { efi.canTouchEfiVariables = true;