Use latest kernel.

This commit is contained in:
2024-09-13 13:51:42 +01:00
parent 640cc88ae1
commit 6e762f1821
2 changed files with 5 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
imports = [
./cpufreq.nix
./flakes.nix
./kernel.nix
./locale.nix
./network.nix
./nix.nix

4
common/global/kernel.nix Normal file
View File

@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
boot.kernelPackages = pkgs.linuxPackages_latest;
}