| 12345678910111213141516171819202122232425262728293031 |
- {
- lib,
- modulesPath,
- ...
- }:
- {
- imports = [
- (modulesPath + "/installer/scan/not-detected.nix")
- (modulesPath + "/profiles/qemu-guest.nix")
- ./disk.nix
- ];
- boot.loader.grub = {
- efiSupport = true;
- efiInstallAsRemovable = true;
- };
- boot.initrd.availableKernelModules = [
- "ata_piix"
- "uhci_hcd"
- "virtio_pci"
- "virtio_blk"
- ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-intel" ];
- boot.extraModulePackages = [ ];
- nixpkgs.hostPlatform.system = "x86_64-linux";
- networking.useDHCP = lib.mkDefault true;
- }
|