dotfiles/nixos/systems/blowhole/grub.nix

11 lines
194 B
Nix
Raw Normal View History

{ ... }:
{
boot.loader = {
systemd-boot.enable = false;
grub = {
enable = true;
devices = [ "/dev/disk/by-id/usb-Verbatim_STORE_N_GO_072124E3712B7287-0:0" ];
};
};
}