flake/nixos/profiles/opt-in/legacy-boot.nix

8 lines
143 B
Nix
Raw Normal View History

2023-12-02 10:42:59 +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;
};
}