summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd/installation-cd-minimal-new-kernel.nix
blob: 4363c8e6c93b149dca47a8fdbeeefebe8c18a375 (plain) (blame)
1
2
3
4
5
6
7
{ config, pkgs, ... }:

{
  imports = [ ./installation-cd-minimal.nix ];

  boot.kernelPackages = pkgs.linuxPackages_latest;
}