1
0
Fork 0
nixos-utm-vm/base.nix

13 lines
356 B
Nix
Raw Normal View History

{modulesPath, ...}: {
disko.devices.disk.disk1.device = "/dev/vda";
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.loader.grub = {
# no need to set devices, disko will add all devices that have a EF02 partition to the list already
# devices = [ ];
efiSupport = true;
efiInstallAsRemovable = true;
};
}