{ config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") # TODO is this necessary? (modulesPath + "/profiles/qemu-guest.nix") ./cpu.nix ./gpu.nix ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; system.fileSystemLayouts = { enable = true; mainDisk = "/dev/disk/by-uuid/b1974623-df36-4367-bf12-c0778cd8ff33"; efiDisk = "/dev/disk/by-uuid/201D-E6E7"; }; boot = { kernelModules = []; # TODO check this: initrd.availableKernelModules = ["xhci_pci" "nvme" "rtsx_pci_sdmmc"]; }; }