nichts/modules/system/hardware/cpu/intel.nix

21 lines
391 B
Nix
Raw Normal View History

2024-08-20 21:27:00 +02:00
{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkDefault mkIf;
inherit (config.modules.system.video) nvidia amd;
in {
hardware = {
cpu.intel.updateMicrocode = mkDefault config.hardware.enableRedistributableFirmware;
graphics.extraPackages = builtins.attrValues {
inherit
(pkgs)
intel-vaapi-driver
intel-media-driver
;
};
2024-08-20 21:27:00 +02:00
};
}