nixos-config/hosts/qemu/boot/default.nix
2025-03-24 02:55:47 -04:00

10 lines
158 B
Nix

{ pkgs, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader.grub = {
enable = true;
device = "/dev/vda";
};
};
}