nixos/modules/server/boot.nix
2025-07-08 18:20:02 -04:00

8 lines
237 B
Nix

{modulesPath, ...}: {
imports = [(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/profiles/qemu-guest.nix")];
boot.loader.grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = true;
};
}