30 lines
734 B
Nix
30 lines
734 B
Nix
{
|
|
config,
|
|
lib,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
(modulesPath + "/profiles/qemu-guest.nix") # TODO: remove for actual install
|
|
];
|
|
|
|
boot = {
|
|
initrd = {
|
|
availableKernelModules = ["nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod"];
|
|
kernelModules = [];
|
|
};
|
|
kernelModules = ["kvm-amd"];
|
|
extraModulePackages = [];
|
|
supportedFilesystems = ["ext4" "btrfs"];
|
|
};
|
|
|
|
hardware.enableAllFirmware = true;
|
|
|
|
# let networkmanager handle it
|
|
networking.useDHCP = lib.mkDefault false;
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
}
|