{ lib, pkgs, config, modulesPath, ... }: with lib; { imports = [ "${modulesPath}/installer/scan/not-detected.nix" ]; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.initrd.systemd.enable = true; boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ata_piix" "mptsas" "usb_storage" "usbhid" "sd_mod" "sr_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; nixpkgs.hostPlatform = "x86_64-linux"; hardware.enableRedistributableFirmware = true; hardware.cpu.intel.updateMicrocode = true; }