move boot

This commit is contained in:
Henry Hiles 2025-10-17 15:17:42 -04:00
commit 6980998bd8
No known key found for this signature in database

View file

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