dotfiles/nixos/systems/toothpick/grub.nix
2023-11-18 13:55:50 +01:00

9 lines
120 B
Nix

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