forest/common/generic-grub.nix

6 lines
132 B
Nix
Raw Normal View History

{ pkgs, ... }: {
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
}