nichts/modules/system/hardware/cpu/intel.nix
2024-08-20 21:27:00 +02:00

17 lines
348 B
Nix

{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkDefault mkIf;
inherit (config.modules.system.video) nvidia amd;
in {
hardware = {
cpu.intel.updateMicrocode = mkDefault config.hardware.enableRedistributableFirmware;
hardware.graphics.extraPackages = with pkgs; [
intel-vaapi-driver
intel-media-driver
];
};
}