| 1234567891011121314151617181920212223242526272829 |
- { 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;
- }
|