17 lines
306 B
Nix
17 lines
306 B
Nix
{modulesPath, ...}: {
|
|
imports = [
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
];
|
|
|
|
services.qemuGuest.enable = true;
|
|
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
efiInstallAsRemovable = true;
|
|
devices = ["nodev"];
|
|
};
|
|
|
|
boot.loader.efi.canTouchEfiVariables = false;
|
|
}
|