nix-server/modules/core/kernel.nix
2026-04-23 07:29:12 -07:00

8 lines
124 B
Nix

{ lib, config, pkgs, ... }:
with lib;
{
config = {
boot.kernelPackages = mkDefault pkgs.linuxPackages_latest;
};
}