flake/nixos/profiles/common/opt-in/_legacy-boot.nix
2024-01-16 10:02:44 +08:00

7 lines
140 B
Nix
Executable file

{
boot.loader = {
grub.enable = true;
grub.device = "/dev/vda"; # or "nodev" for efi only
systemd-boot.enable = false;
};
}