1
Fork 0
nixos-system-config/modules/nixos/hardware/cpu/amd/default.nix

12 lines
222 B
Nix
Raw Normal View History

2025-01-10 23:38:56 +01:00
{ pkgs, ... }:
{
boot = {
kernelModules = [ "kvm-amd" ];
extraModprobeConfig = "options kvm_amd nested=1";
};
hardware.cpu.amd.updateMicrocode = true;
hardware.firmware = with pkgs; [ linux-firmware ];
}