dotfiles/nixos/systems/toothpick/grub.nix

10 lines
137 B
Nix
Raw Normal View History

{ pkgs, lib, ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
version = 2;
efiSupport = false;
};
}