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