diff --git a/profiles/work/configuration.nix b/profiles/work/configuration.nix index 18a39d0e..af6e4bc2 100644 --- a/profiles/work/configuration.nix +++ b/profiles/work/configuration.nix @@ -6,7 +6,8 @@ { imports = [ ../../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/printing.nix ../../system/hardware/bluetooth.nix diff --git a/system/hardware/kernel.nix b/system/hardware/kernel.nix new file mode 100644 index 00000000..6837feaf --- /dev/null +++ b/system/hardware/kernel.nix @@ -0,0 +1,5 @@ +{ config, lib, pkgs, ... }: + +{ + boot.kernelPackages = pkgs.linuxPackages_latest; +}