{ config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; nixpkgs.config.allowUnfree = true; hardware.enableAllFirmware = true; hardware.firmware = [ pkgs.wireless-regdb ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod" "sdhci_pci" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; boot.extraModprobeConfig = '' options iwlmvm power_scheme=1 options iwlwifi disable_11ac=1 options iwlwifi disable_11ax= 1 ''; boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.kernelPackages = pkgs.linuxPackages_6_6; services.fwupd.enable = true; fileSystems."/" = { device = "/dev/disk/by-uuid/40974b12-1be6-4e2b-b8b2-57123f4d60ce"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/0C9E-5CDB"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; swapDevices = [ ]; networking.useDHCP = lib.mkDefault false; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }