mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00

Now that ISOs include the latest kernel as a specialisation, separate ISOs for the new kernel are no longer necessary.
5 lines
116 B
Nix
5 lines
116 B
Nix
{ lib, pkgs, ... }:
|
|
{
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
boot.supportedFilesystems.zfs = false;
|
|
}
|