
Now that ISOs include the latest kernel as a specialisation, separate ISOs for the new kernel are no longer necessary.
15 lines
341 B
Nix
15 lines
341 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [ ./installation-cd-minimal.nix ];
|
|
|
|
isoImage.configurationName = lib.mkDefault "(Linux LTS)";
|
|
|
|
specialisation.latest_kernel.configuration =
|
|
{ config, ... }:
|
|
{
|
|
imports = [ ./latest-kernel.nix ];
|
|
isoImage.configurationName = "(Linux ${config.boot.kernelPackages.kernel.version})";
|
|
};
|
|
}
|