15 lines
215 B
Nix
15 lines
215 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: {
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
boot.loader.grub = {
|
|
devices = ["/dev/vda"];
|
|
efiSupport = true;
|
|
efiInstallAsRemovable = true;
|
|
};
|
|
}
|