dotfiles/flakes/common/nix_modules/boot_grub.nix
RingOfStorms (Joshua Bell) a5fa2f1e63 make grub default device only
2025-12-18 17:43:51 -06:00

11 lines
109 B
Nix

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