13 lines
272 B
Nix
13 lines
272 B
Nix
{ lib, modulesPath, ... }:
|
|
|
|
{
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
|
|
|
boot = {
|
|
initrd.availableKernelModules = [ "nvme" "ahci" "usbhid" ];
|
|
kernelModules = [ "kvm-amd" ];
|
|
};
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
}
|