make grub default device only

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-12-18 17:43:51 -06:00
parent 839ac84832
commit a5fa2f1e63

View file

@ -1,10 +1,11 @@
{
lib,
...
}:
{
boot.loader.grub = {
enable = true;
device = "/dev/sda";
device = lib.mkDefault "/dev/sda";
};
}