{ config, lib, pkgs, modulesPath, ... }: { imports = [(modulesPath + "/installer/scan/not-detected.nix")]; boot = { initrd = { availableKernelModules = ["xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod"]; kernelModules = []; }; kernelModules = ["kvm-intel"]; kernelParams = ["i915.force_probe=46a6"]; extraModulePackages = []; }; fileSystems = { "/" = { device = "/dev/disk/by-uuid/d0dfd8f7-355c-4d81-a20b-52b522914b96"; fsType = "xfs"; }; "/boot/efi" = { device = "/dev/disk/by-uuid/FD80-0AEA"; fsType = "vfat"; }; }; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }