From 904f8d1e0cd88eb4048910f08a2b724a091fcc9f Mon Sep 17 00:00:00 2001 From: cswimr Date: Wed, 5 Feb 2025 15:19:35 -0600 Subject: [PATCH] switch to latest kernel --- nixos/configuration.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index f76b61e..0b2ff12 100755 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -42,13 +42,7 @@ }; # install the most recent stable linux kernel - /* - TODO: change this back to 'pkgs.linuxPackages_latest' once - https://github.com/NixOS/nixpkgs/commit/c805021f3a95da44a1811f1235b997f57d893dc3 - and https://github.com/NixOS/nixpkgs/pull/375838 - trickle down to nixos-unstable - */ - boot.kernelPackages = pkgs.linuxPackages_6_12; + boot.kernelPackages = pkgs.linuxPackages_latest; # Bootloader. boot.loader.systemd-boot.enable = true;