move kernel

This commit is contained in:
Reid 2026-04-23 07:28:29 -07:00
parent f2c9e4d5b7
commit 3193a121a5
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
2 changed files with 8 additions and 2 deletions

8
modules/core/kernel.nix Normal file
View file

@ -0,0 +1,8 @@
{ lib, config, pkgs, ... }:
with lib;
{
config = mkMerge {
boot.kernelPackages = mkDefault pkgs.linuxPackages_latest;
};
}