27 lines
686 B
Nix
27 lines
686 B
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||
|
];
|
||
|
|
||
|
|
||
|
boot = {
|
||
|
initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
||
|
initrd.kernelModules = [ ];
|
||
|
kernelModules = [ "kvm-intel" ];
|
||
|
extraModulePackages = [ ];
|
||
|
};
|
||
|
|
||
|
fileSystems."/" =
|
||
|
{ device = "/dev/disk/by-uuid/e10eea5c-4dca-40f7-86cc-02105bc6d4e0";
|
||
|
fsType = "ext4";
|
||
|
};
|
||
|
|
||
|
swapDevices = [ ];
|
||
|
|
||
|
networking.useDHCP = lib.mkDefault true;
|
||
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||
|
}
|