nixos-config/hosts/flight/boot/default.nix

8 lines
142 B
Nix

{ pkgs, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader.grub.enable = true;
plymouth.enable = true;
};
}