Upgraded kernel

This commit is contained in:
Emmet 2023-08-11 14:27:02 -05:00
parent 31843804fe
commit eff191f7cf
2 changed files with 7 additions and 1 deletions

View file

@ -6,7 +6,8 @@
{ {
imports = imports =
[ ../../system/hardware-configuration.nix [ ../../system/hardware-configuration.nix
../../system/hardware/power.nix ../../system/hardware/kernel.nix # Kernel config
../../system/hardware/power.nix # Power management
../../system/hardware/opengl.nix ../../system/hardware/opengl.nix
../../system/hardware/printing.nix ../../system/hardware/printing.nix
../../system/hardware/bluetooth.nix ../../system/hardware/bluetooth.nix

View file

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