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

8 lines
140 B
Nix
Raw Normal View History

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