flake/nixos/profiles/common/opt-in/_legacy-boot.nix

8 lines
140 B
Nix
Raw Normal View History

2024-01-15 04:18:06 +00:00
{
2023-11-04 10:02:11 +00:00
boot.loader = {
grub.enable = true;
grub.device = "/dev/vda"; # or "nodev" for efi only
systemd-boot.enable = false;
};
}